UNPKG

alsatian

Version:

TypeScript and JavaScript testing framework for beautiful and readable tests

13 lines (12 loc) 267 B
export interface ILog { value: string; stack: Array<IStackDetail>; } export interface IStackDetail { functionName: string; filePath: string; } export declare class Logger { static readonly LOGS: Array<ILog>; static log(value: string): void; }