UNPKG

356 BTypeScriptView Raw
1import 'typings-global';
2import plugins = require('./beautylog.plugins');
3export interface IFigletOptions {
4 font?: string;
5 color?: plugins.beautycolor.TColorName;
6 cb?: any;
7}
8export declare let figlet: (textArg: string, optionsArg?: any) => Promise<{}>;
9export declare let figletSync: (textArg: string, optionsArg?: IFigletOptions) => boolean;