effect-io-ai

Package: @effect/printer
Module: Doc

Doc.Nest

Represents a document that is indented by a certain number of columns.

Signature

export interface Nest<A> extends Doc.Variance<A> {
  readonly _tag: "Nest"
  readonly indent: number
  readonly doc: Doc<A>
}

Source

Since v1.0.0