UNPKG

486 BTypeScriptView Raw
1export type JsonPrimitive = string | number | boolean | null;
2export type JsonObject = {[Key in string]?: JsonValue};
3export type JsonArray = JsonValue[];
4export type JsonValue = JsonPrimitive | JsonObject | JsonArray;
5
6export interface Prx {
7 monitor: (e: JsonObject) => void;
8 event: (e: JsonObject) => void;
9 _prev?: string;
10}
11
12export interface Wnd extends Window {
13 proxima?: Prx;
14 _phantom?: string;
15 doNotTrack?: () => boolean;
16 __nightmare?: string;
17 Cypress?: string;
18}