mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
Before, this
```ts
export class Bux {
private constructor(
public readonly prop: number = 0,
private readonly prop2: number = 1,
readonly prop3: number = 1,
) {}
}
```
would be emitted as
```ts
export declare class Bux {
private constructor();
}
```
Now it will be emitted as
```ts
export declare class Bux {
readonly prop: number;
private readonly prop2;
readonly prop3: number;
private constructor();
}
```
Co-authored-by: MichaelMitchell-at <=>
|
||
|---|---|---|
| .. | ||
| deno | ||
| fixtures | ||
| snapshots | ||
| mod.rs | ||