1// augment nodejs global with ES2015+ things 2declare namespace NodeJS { 3 interface Global { 4 Atomics: typeof Atomics; 5 Proxy: typeof Proxy; 6 Reflect: typeof Reflect; 7 } 8} 9