myst-spec-ext
Advanced tools
Comparing version 1.4.0 to 1.4.1
@@ -1,2 +0,2 @@ | ||
import type { Block as SpecBlock, Parent, StaticPhrasingContent, FlowContent, ListContent, PhrasingContent, TableCell as SpecTableCell, FootnoteReference as FNR, FootnoteDefinition as FND, Heading as SpecHeading, Image as SpecImage, Admonition as SpecAdmonition, Code as SpecCode, ListItem as SpecListItem, Container as SpecContainer, InlineMath as SpecInlineMath, Math as SpecMath, Node, CrossReference as SpecCrossReference } from 'myst-spec'; | ||
import type { Block as SpecBlock, Parent, StaticPhrasingContent, FlowContent, ListContent, PhrasingContent, TableCell as SpecTableCell, FootnoteReference as FNR, FootnoteDefinition as FND, Heading as SpecHeading, Image as SpecImage, Admonition as SpecAdmonition, Code as SpecCode, ListItem as SpecListItem, Container as SpecContainer, InlineMath as SpecInlineMath, Math as SpecMath, Node, CrossReference as SpecCrossReference, Link as SpecLink } from 'myst-spec'; | ||
type Visibility = 'show' | 'hide' | 'remove'; | ||
@@ -158,2 +158,3 @@ export type Delete = Parent & { | ||
location?: string; | ||
remoteBaseUrl?: string; | ||
}; | ||
@@ -224,6 +225,18 @@ export type Embed = { | ||
export type CrossReference = SpecCrossReference & { | ||
urlSource?: string; | ||
remote?: boolean; | ||
url?: string; | ||
dataUrl?: string; | ||
remoteBaseUrl?: string; | ||
html_id?: string; | ||
}; | ||
export type Link = SpecLink & { | ||
urlSource?: string; | ||
dataUrl?: string; | ||
internal?: boolean; | ||
static?: true; | ||
protocol?: string; | ||
error?: true; | ||
}; | ||
export {}; | ||
//# sourceMappingURL=types.d.ts.map |
{ | ||
"name": "myst-spec-ext", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"description": "Extensions for myst-spec that are used in mystmd", | ||
@@ -5,0 +5,0 @@ "author": "Rowan Cockett <rowan@curvenote.com>", |
Sorry, the diff of this file is not supported yet
15137
247