UNPKG

167 BTypeScriptView Raw
1export declare type IListItem = [string, string | undefined];
2export declare type IList = IListItem[];
3export declare function renderList(items: IListItem[]): string;