UNPKG

290 BTypeScriptView Raw
1import Test from './Test';
2export interface InternError {
3 name: string;
4 message: string;
5 stack?: string;
6 showDiff?: boolean;
7 actual?: any;
8 expected?: any;
9 relatedTest?: Test;
10 reported?: boolean;
11}
12export declare type RuntimeEnvironment = 'node' | 'browser';