UNPKG

@vant/cli

Version:

Vant CLI is a tool for building vue component library. You can quickly build a full-featured Vue component library with vant-cli.

14 lines (13 loc) 284 B
type TableContent = { head: string[]; body: string[][]; }; export type Article = { type: string; content?: string; table?: TableContent; level?: number; }; export type Articles = Article[]; export declare function mdParser(input: string): Articles; export {};