vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
11 lines (10 loc) • 367 B
TypeScript
export { stripAnsi };
export { hasRed };
export { hasGreen };
export { hasYellow };
export { colorVite };
declare function colorVite<Str extends string>(str: Str): Str;
declare function stripAnsi(string: string): string;
declare function hasRed(str: string): boolean;
declare function hasGreen(str: string): boolean;
declare function hasYellow(str: string): boolean;