UI for Zipcoin Blue

format.d.ts 779B

12345678910111213141516171819
  1. export declare const ICON_ELLIPSIS: string;
  2. export declare const ICON_SUCCESS: string;
  3. export declare const ICON_FAILURE: string;
  4. export declare const SPINNER_FRAMES: string[];
  5. export declare const TTY_WIDTH: number;
  6. export declare function prettyPath(p: string): string;
  7. export declare function expandPath(p: string): string;
  8. export declare function indent(n?: number): string;
  9. export declare function wordWrap(msg: string, {indentation, append}: {
  10. indentation?: number;
  11. append?: string;
  12. }): string;
  13. export declare function generateFillSpaceStringList(list: string[], optimalLength?: number, fillCharacter?: string): string[];
  14. export declare function columnar(rows: string[][], options?: {
  15. hsep?: string;
  16. vsep?: string;
  17. columnHeaders?: string[];
  18. }): string;