smartlog-destination-local/index.d.ts

40 lines
1.1 KiB
TypeScript
Raw Permalink Normal View History

2016-02-02 15:49:16 +00:00
/// <reference path="ts/typings/main.d.ts" />
2016-01-25 00:01:07 +00:00
declare module BeautylogPlugins {
2016-01-30 05:19:44 +00:00
var init: () => any;
2016-01-25 00:01:07 +00:00
}
declare var tableHelpers: {
makeRow: (cellCounterArg?: number, colorArg?: string) => any[];
};
declare class ConsoleTable {
tableHead: string[];
rows: any;
type: string;
constructor(tableTypeArg: string, tableHeadArrayArg?: string[]);
push(row: string[]): void;
print(): void;
}
declare module BeautylogNode {
function init(): any;
}
2016-01-30 05:19:44 +00:00
declare module BeautylogNodeLog {
var init: () => (logText?: string, logType?: string) => boolean;
}
declare module BeautylogNodeCode {
var init: () => (codeString: any, options?: any) => void;
}
declare module BeautylogNodeTable {
2016-01-25 00:01:07 +00:00
var cliTable: any;
function init(): any;
}
2016-02-11 03:04:49 +00:00
declare module BeautylogNodeFiglet {
var figlet: (textArg: string, optionsArg?: any) => any;
var figletSync: (textArg: string, optionsArg?: any) => boolean;
2016-02-11 03:04:49 +00:00
}
2016-01-25 00:01:07 +00:00
declare module BeautylogBrowser {
function init(): any;
}
2016-02-11 03:04:49 +00:00
declare module BeautylogPromiseChain {
}
2016-01-30 05:19:44 +00:00
declare var plugins: any;
2016-01-25 00:01:07 +00:00
declare var beautylog: any;