mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +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 { }
|
|
} |