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