TenantAtlas/apps/platform/.pnpm-store/v10/files/c7/167022de78bb6fbe17ce809f5f5e73a9177f40639271051a0d53bf4738167bcb4bfd80c6355ac2bb72938c2bf16b249db61f3a19217d1782b6a7dba45a54d1
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

12 lines
520 B
Plaintext

import chalk from 'chalk';
export declare class PrefixColorSelector {
private colorGenerator;
constructor(customColors?: string | string[]);
/** A list of colors that are readable in a terminal. */
static get ACCEPTABLE_CONSOLE_COLORS(): ("stderr" | keyof chalk.Chalk | "supportsColor" | "Level" | "Color" | "ForegroundColor" | "BackgroundColor" | "Modifiers")[];
/**
* @returns The given custom colors then a set of acceptable console colors indefinitely.
*/
getNextColor(): string;
}