UNPKG

272 BTypeScriptView Raw
1import { MarkdownList } from "../contracts";
2export declare namespace ListGenerator {
3 function RenderList(list: MarkdownList, level: number, ordered: boolean, symbol?: string): string[];
4 function GetListItem(text: string, level: number, symbol: string): string;
5}