mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +03:00
11 lines
171 B
TypeScript
11 lines
171 B
TypeScript
|
// @noEmit: true
|
||
|
// @allowJs: true
|
||
|
// @checkJs: true
|
||
|
// @Filename: a.d.ts
|
||
|
declare namespace C {
|
||
|
function bar(): void
|
||
|
}
|
||
|
// @Filename: b.js
|
||
|
C.prototype = {};
|
||
|
C.bar = 2;
|