fix(build): add ansi-256-colors type declarations and update build configuration
This commit is contained in:
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
declare module 'ansi-256-colors' {
|
||||
export interface IAnsi256ColorSet {
|
||||
codes: string[];
|
||||
standard: string[];
|
||||
bright: string[];
|
||||
rgb: string[];
|
||||
grayscale: string[];
|
||||
getRgb(r: number, g: number, b: number): string;
|
||||
}
|
||||
|
||||
export const fg: IAnsi256ColorSet;
|
||||
export const bg: IAnsi256ColorSet;
|
||||
export const reset: string;
|
||||
}
|
||||
Reference in New Issue
Block a user