1 | import ES2015 = require("../es2015");
|
2 |
|
3 | interface ES2015Operations extends Record<keyof ES2015, string> {
|
4 | // Unimplemented operations:
|
5 | Construct: string;
|
6 | CreateArrayFromList: string;
|
7 | CreateListIterator: string;
|
8 | NormalCompletion: string;
|
9 | RegExpBuiltinExec: string;
|
10 | }
|
11 |
|
12 | declare const ES2015Operations: ES2015Operations;
|
13 | export = ES2015Operations;
|