eve-esi-types
Version:
Extracted the main type of ESI. use for ESI request response types (version 2 only)
19 lines (18 loc) • 414 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;
/**
* @param {string} banner
*/
export declare function getLogger(banner: string, logSelector?: string): (...args: any[]) => void;