UNPKG

@mistweaverco/cli-html

Version:

Convert HTML to CLI output with TypeScript support

9 lines (8 loc) 268 B
import { HTMLNode, GlobalConfig } from '../../types'; interface ListItem { value: string; width: number; level: number; } export declare const renderList: (items: HTMLNode[], config: GlobalConfig, level?: number, marker?: string) => ListItem[]; export {};