vue-renderer-markdown
Version:
A Vue 3 component that renders Markdown string content as HTML, supporting custom components and advanced markdown features.
30 lines • 879 B
TypeScript
interface TableCellNode {
type: 'table_cell';
header: boolean;
children: {
type: string;
raw: string;
}[];
raw: string;
}
interface TableRowNode {
type: 'table_row';
cells: TableCellNode[];
raw: string;
}
interface TableNode {
type: 'table';
header: TableRowNode;
rows: TableRowNode[];
raw: string;
}
type __VLS_Props = {
node: TableNode;
};
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
copy: (...args: any[]) => void;
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
onCopy?: (...args: any[]) => any;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
export default _default;
//# sourceMappingURL=TableNode.vue.d.ts.map