Skip to content

Commit

Permalink
docs: [BlockTag] update children definition
Browse files Browse the repository at this point in the history
Signed-off-by: Lexus Drumgold <[email protected]>
  • Loading branch information
unicornware committed Apr 12, 2024
1 parent 1a66c46 commit 7a7c60d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ Its content is limited to [docast content](#content-model) and [mdast content][m

```ts
interface BlockTag extends Parent, Tag {
children: BlockTagContent[]
children:
| Exclude<BlockTagContent, TypeExpression>[]
| [TypeExpression, ...Exclude<BlockTagContent, TypeExpression>[]]
data?: BlockTagData | undefined
type: 'blockTag'
}
Expand Down

0 comments on commit 7a7c60d

Please sign in to comment.