UNPKG

obj-console

Version:

Shows JS objects in terminal with custom format in VSCode colors

17 lines (16 loc) 460 B
export declare const colorScheme: { key: string; number: string; boolean: string; string: string; stringCut: string; function: string; undefined: string; null: string; brackets: string[]; }; /** * Returns color from colorScheme.brackets, according to given number. * If number is more then colors count, then returns to the start of colors array. */ export declare function cylceColor(n: number): string;