2016-10-16 00:26:43 +00:00
|
|
|
import 'typings-global';
|
2017-01-21 18:04:40 +00:00
|
|
|
import plugins = require('./beautylog.plugins');
|
|
|
|
export interface IFigletOptions {
|
|
|
|
font?: string;
|
|
|
|
color?: plugins.beautycolor.TColorName;
|
|
|
|
cb?: any;
|
|
|
|
}
|
2017-01-21 00:05:28 +00:00
|
|
|
export declare let figlet: (textArg: string, optionsArg?: any) => Promise<{}>;
|
2017-01-21 18:04:40 +00:00
|
|
|
export declare let figletSync: (textArg: string, optionsArg?: IFigletOptions) => boolean;
|