UNPKG

@oclif/table

Version:

Display table in terminal

18 lines (17 loc) 627 B
export declare const BORDER_STYLES: readonly ["all", "headers-only-with-outline", "headers-only-with-underline", "headers-only", "horizontal-with-outline", "horizontal", "none", "outline", "vertical-with-outline", "vertical-rows-with-outline", "vertical"]; export type BorderStyle = (typeof BORDER_STYLES)[number]; type Skeleton = { cross: string; left: string; line: string; right: string; }; export declare const BORDER_SKELETONS: Record<BorderStyle, { data: Skeleton; footer: Skeleton; header: Skeleton; heading: Skeleton; separator: Skeleton; headerFooter?: Skeleton; }>; export {};