mirror of
https://github.com/swc-project/swc.git
synced 2024-12-29 00:23:10 +03:00
25 lines
252 B
TypeScript
25 lines
252 B
TypeScript
|
|
||
|
interface C { }
|
||
|
|
||
|
declare class C { }
|
||
|
|
||
|
interface C { }
|
||
|
|
||
|
interface C { }
|
||
|
|
||
|
declare module M {
|
||
|
|
||
|
interface C1 { }
|
||
|
|
||
|
class C1 { }
|
||
|
|
||
|
interface C1 { }
|
||
|
|
||
|
interface C1 { }
|
||
|
|
||
|
export class C2 { }
|
||
|
}
|
||
|
|
||
|
declare module M {
|
||
|
export interface C2 { }
|
||
|
}
|