myst-to-typst
Version:
Export from MyST mdast to Typst
13 lines • 505 B
TypeScript
import { type GenericNode } from 'myst-common';
import type { Handler } from './types.js';
export declare enum CaptionKind {
fig = "fig",
eq = "eq",
code = "code",
table = "table"
}
export declare function determineCaptionKind(node: GenericNode): CaptionKind | null;
export declare function getDefaultCaptionSupplement(kind: CaptionKind | string): string;
export declare const containerHandler: Handler;
export declare const captionHandler: Handler;
//# sourceMappingURL=container.d.ts.map