smartlog-destination-local/dist/beautylog.remote.d.ts

9 lines
263 B
TypeScript
Raw Normal View History

2017-01-21 22:12:39 +00:00
export interface ILogMethod {
(logType: string, logMessage: string): void;
}
export interface IBeautyRemote {
log: ILogMethod;
}
export declare let remoteArray: IBeautyRemote[];
2016-07-23 23:17:38 +00:00
export declare let remoteLog: (logType: string, logMessage: string) => void;