mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +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 {} |