mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
|
// @target: esnext
|
||
|
// @module: esnext
|
||
|
// @filename: index.d.ts
|
||
|
|
||
|
// await keyword allowed as identifier in a declaration file
|
||
|
export {};
|
||
|
declare const await: any;
|
||
|
declare class C extends await {}
|