eve-esi-types
Version:
Extracted the main type of ESI. use for ESI request response types (version 2 only)
16 lines (15 loc) • 380 B
text/typescript
declare global {
interface String {
red: string;
green: string;
yellow: string;
blue: string;
magenta: string;
cyan: string;
}
}
/**
* @param {boolean} enable
*/
export declare function defineColors(enable: boolean): void;
export declare function getLogger(banner: string, logSelector?: string): (...args: any[]) => void;