mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
23 lines
239 B
TypeScript
23 lines
239 B
TypeScript
|
declare class C1 {
|
||
|
public x : number;
|
||
|
}
|
||
|
|
||
|
interface C1 {
|
||
|
x : number;
|
||
|
}
|
||
|
|
||
|
declare class C2 {
|
||
|
protected x : number;
|
||
|
}
|
||
|
|
||
|
interface C2 {
|
||
|
x : number;
|
||
|
}
|
||
|
|
||
|
declare class C3 {
|
||
|
private x : number;
|
||
|
}
|
||
|
|
||
|
interface C3 {
|
||
|
x : number;
|
||
|
}
|