sajt/types/markdown.d.ts

8 lines
193 B
TypeScript
Raw Normal View History

2025-02-24 18:46:31 +01:00
export declare function parseMD(file: string): {
meta: {
[key: string]: any;
};
content: string | Promise<string>;
};
export declare function parseMarkdown(obj: any): void;