bananass-utils-console
Version:
Console Utilities for Bananass Framework.🍌
29 lines (28 loc) • 842 B
TypeScript
/** @type {string} */
export const successIcon: string;
/** @type {string} */
export const errorIcon: string;
/** @type {string} */
export const warningIcon: string;
/** @type {string} */
export const infoIcon: string;
/** @type {string} */
export const bananassIcon: string;
/** @type {string} U+2022: "Bullet" (•) */
export const bulletIcon: string;
/** @type {string} U+2500: "Box Drawings Light Horizontal" (─) */
export const boxDrawingsLightHorizontalIcon: string;
/** @type {string} */
export const successText: string;
/** @type {string} */
export const errorText: string;
/** @type {string} */
export const warningText: string;
/** @type {string} */
export const infoText: string;
/** @type {SpinnerStyle} */
export const defaultSpinner: SpinnerStyle;
export type SpinnerStyle = {
frames: string[];
interval?: number;
};