1 | import ES2018Operations = require("./2018");
|
2 | import ES2019 = require("../es2019");
|
3 |
|
4 | interface ES2019Operations
|
5 | extends
|
6 | Record<keyof ES2019, string>,
|
7 | Omit<ES2018Operations, "ModuleDeclarationEnvironmentSetup" | "ModuleExecution" | "WakeWaiter">
|
8 | {
|
9 | AsyncFromSyncIteratorContinuation: string;
|
10 | ExecuteModule: string;
|
11 | InitializeEnvironment: string;
|
12 | NotifyWaiter: string;
|
13 | SynchronizeEventSet: string;
|
14 | }
|
15 |
|
16 | declare const ES2019Operations: ES2019Operations;
|
17 | export = ES2019Operations;
|