@ztl-uwu/nuxt-content
Version:
Write your content inside your Nuxt app
14 lines (13 loc) • 359 B
TypeScript
import type { Point as MPoint } from 'micromark-util-types';
type Point = Omit<MPoint, '_index' | '_bufferIndex'>;
type Node = {
type: string;
children: Array<Node>;
position?: {
start?: Point;
end?: Point;
};
value?: string;
};
export declare const fromCSV: (value: any, encoding?: any, options?: any) => Node;
export {};