@mornya/cli-libs
Version:
The project of the utilities for CLI.
7 lines (6 loc) • 314 B
TypeScript
export type IconKey = 'okay' | 'bad' | 'info' | 'warn' | 'exclaim' | 'star' | 'ellipsis' | 'point' | 'pointSmall' | 'pin' | 'bullet' | 'heart' | 'shineHeart' | 'help' | 'arrowUp' | 'arrowDown' | 'arrowLeft' | 'arrowRight';
type Icon = {
[Key in IconKey]: string;
};
export declare const icon: Icon;
export {};