npm-check-updates
Version:
Find newer versions of dependencies than what your package.json allows
8 lines (7 loc) • 401 B
TypeScript
type ChalkMethod = ((s: any) => string) & {
bold: (s: any) => string;
};
/** Initializes the global chalk instance with an optional flag for forced color. Idempotent. */
export declare const chalkInit: (color?: boolean | null) => Promise<void>;
declare const chalkGlobal: Record<"blue" | "bold" | "cyan" | "gray" | "green" | "magenta" | "red" | "yellow", ChalkMethod>;
export default chalkGlobal;