myst-spec-ext
Advanced tools
Comparing version 0.0.6 to 0.0.7
@@ -1,2 +0,2 @@ | ||
import type { Parent, TableCell as SpecTableCell, FootnoteReference as FNR, FootnoteDefinition as FND, Heading as SpecHeading, Image as SpecImage, Admonition as SpecAdmonition } from 'myst-spec'; | ||
import type { Parent, StaticPhrasingContent, TableCell as SpecTableCell, FootnoteReference as FNR, FootnoteDefinition as FND, Heading as SpecHeading, Image as SpecImage, Admonition as SpecAdmonition } from 'myst-spec'; | ||
export declare type Delete = Parent & { | ||
@@ -61,2 +61,15 @@ type: 'delete'; | ||
}; | ||
export declare type CiteKind = 'narrative' | 'parenthetical'; | ||
export declare type Cite = { | ||
type: 'cite'; | ||
kind: CiteKind; | ||
label: string; | ||
children: StaticPhrasingContent[]; | ||
error?: boolean; | ||
}; | ||
export declare type CiteGroup = { | ||
type: 'citeGroup'; | ||
kind: CiteKind; | ||
children: Cite[]; | ||
}; | ||
//# sourceMappingURL=types.d.ts.map |
{ | ||
"name": "myst-spec-ext", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"description": "Extentions for myst-spec that are used in myst-cli and mystjs", | ||
@@ -5,0 +5,0 @@ "author": "Rowan Cockett <rowan@curvenote.com>", |
Sorry, the diff of this file is not supported yet
6684
95