mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
// @target: esnext
|
|
// @module: es2022,esnext
|
|
// @filename: index.d.ts
|
|
|
|
// await keyword allowed as identifier in a declaration file
|
|
export {};
|
|
declare const await: any;
|
|
declare class C extends await {}
|