myst-cli
Version:
Command line tools for MyST
10 lines • 516 B
TypeScript
import type { GenericParent } from 'myst-common';
import type { ISession } from '../session/types.js';
import type { PageFrontmatter } from 'myst-frontmatter';
export declare function processNotebook(session: ISession, file: string, content: string): Promise<GenericParent>;
export declare function processNotebookFull(session: ISession, file: string, content: string): Promise<{
mdast: GenericParent;
frontmatter: PageFrontmatter;
widgets: Record<string, any>;
}>;
//# sourceMappingURL=notebook.d.ts.map