swc_typescript 26.0.0

Proc macro for performance trace of swc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
```==================== .D.TS ====================

import type * as Member from "some-path/my_module";
export interface IMember extends Member.C<"SimpleEntity"> {
}
import type * as Ident from "some-path/my_module";
export interface IIdent extends Ident {
}
import * as Paren from "some-path/my_module";
export declare class CParen extends Paren {
}
import * as OptChain from "some-path/my_module";
export declare class COptChain extends OptChain?.C<"SimpleEntity"> {
}