MCPcopy Create free account
hub / github.com/cli-table/cli-table3 / CellOptions

Interface CellOptions

index.d.ts:51–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49 type CellValue = boolean | number | bigint | string | null | undefined;
50
51 interface CellOptions {
52 content: CellValue;
53 chars?: Partial<Record<CharName, string>>;
54 truncate?: string;
55 colSpan?: number;
56 rowSpan?: number;
57 hAlign?: HorizontalAlignment;
58 vAlign?: VerticalAlignment;
59 wordWrap?: boolean;
60 wrapOnWordBoundary?: boolean;
61 href?: string;
62 style?: {
63 "padding-left"?: number;
64 "padding-right"?: number;
65 head?: string[];
66 border?: string[];
67 };
68 }
69
70 interface GenericTable<T> extends Array<T> {
71 options: TableInstanceOptions;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…