Skip to content

Type Alias: Nesting

ts
type Nesting = 1 | 0 | -1;

Defined in: token.ts:8

  • 1 means the tag is opening
  • 0 means the tag is self-closing
  • -1 means the tag is closing

Released under the MIT License.