@curvenote/schema
Version:
Schema and markdown parser for @curvenote/editor
9 lines (8 loc) • 398 B
TypeScript
import type { MdFormatSerialize, TexFormatSerialize } from '../serialize/types';
import type { MyNodeSpec } from './types';
import type { CiteGroup } from '../spec';
export declare type Attrs = Record<string, never>;
declare const citeGroup: MyNodeSpec<Attrs, CiteGroup>;
export declare const toMarkdown: MdFormatSerialize;
export declare const toTex: TexFormatSerialize;
export default citeGroup;