UNPKG

367 BTypeScriptView Raw
1import ES2015 = require("../es2015");
2
3interface 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
12declare const ES2015Operations: ES2015Operations;
13export = ES2015Operations;