mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 20:51:42 +03:00
29 lines
433 B
TypeScript
29 lines
433 B
TypeScript
|
// @allowJs: true
|
||
|
// @checkJs: true
|
||
|
// @declaration: true
|
||
|
// @emitDeclarationOnly: true
|
||
|
// @outDir: ./out
|
||
|
|
||
|
// @Filename: /defs.d.ts
|
||
|
declare namespace N {
|
||
|
interface A {
|
||
|
mNumber(): number;
|
||
|
}
|
||
|
interface AT<T> {
|
||
|
gen(): T;
|
||
|
}
|
||
|
}
|
||
|
// @Filename: /a.js
|
||
|
/** @implements N.A */
|
||
|
class B {
|
||
|
mNumber() {
|
||
|
return 0;
|
||
|
}
|
||
|
}
|
||
|
/** @implements {N.AT<string>} */
|
||
|
class BAT {
|
||
|
gen() {
|
||
|
return "";
|
||
|
}
|
||
|
}
|