mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
15 lines
236 B
TypeScript
15 lines
236 B
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @declaration: true
|
|
// @emitDeclarationOnly: true
|
|
// @outDir: ./out
|
|
|
|
// @Filename: /defs.d.ts
|
|
interface Sig {
|
|
[index: string]: string
|
|
}
|
|
// @Filename: /a.js
|
|
/** @implements {Sig} */
|
|
class B {
|
|
}
|