kubricate
Version:
A TypeScript framework for building reusable, type-safe Kubernetes infrastructure — without the YAML mess.
14 lines (11 loc) • 418 B
text/typescript
import c from 'ansis';
export const MARK_CHECK = c.green('✔');
export const MARK_INFO = c.blue('ℹ');
export const MARK_ERROR = c.red('✖');
export const MARK_WARNING = c.yellow('!');
export const MARK_BULLET = '•';
export const MARK_NODE = '⬢';
export const MARK_TREE_BRANCH = '│';
export const MARK_TREE_LEAF = '├──';
export const MARK_TREE_END = '└──';
export const MARK_TREE_SPACE = ' ';