qol-hooks
Version:
A collection of React hooks to improve the quality of life of developers.
43 lines (42 loc) • 841 B
TypeScript
declare const COLORS: {
reset: string;
bright: string;
dim: string;
underscore: string;
blink: string;
reverse: string;
hidden: string;
fg: {
black: string;
red: string;
green: string;
yellow: string;
blue: string;
magenta: string;
cyan: string;
white: string;
crimson: string;
};
bg: {
black: string;
red: string;
green: string;
yellow: string;
blue: string;
magenta: string;
cyan: string;
white: string;
crimson: string;
};
};
type Config = {
colors: typeof COLORS;
modulePath: string;
configPath: string;
configSchema: {
folder: string;
language: string;
};
};
declare const CONFIG: Config;
export default CONFIG;