UNPKG

myst-to-typst

Version:
13 lines 505 B
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