UNPKG

five-server

Version:

Development Server with Live Reload Capability. (Maintained Fork of Live Server)

30 lines 939 B
/** * @copyright Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com) * @license {@link https://github.com/Marak/colors.js/blob/master/LICENSE MIT} * @description modified version of https://github.com/Marak/colors.js/blob/master/lib/styles.js */ export declare const colors: (str: string, clr: Colors) => string; export declare const removeColors: (str: any) => string; export type Colors = keyof typeof colorCodes; declare const colorCodes: { bold: number[]; black: number[]; red: number[]; green: number[]; yellow: number[]; blue: number[]; magenta: number[]; cyan: number[]; white: number[]; gray: number[]; grey: number[]; brightRed: number[]; brightGreen: number[]; brightYellow: number[]; brightBlue: number[]; brightMagenta: number[]; brightCyan: number[]; brightWhite: number[]; }; export {}; //# sourceMappingURL=colors.d.ts.map