mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
8 lines
102 B
TypeScript
8 lines
102 B
TypeScript
|
// @strict: true
|
||
|
|
||
|
declare const f11: 1 | 0 | '' | null | undefined;
|
||
|
|
||
|
let g11 = f11 ?? f11.toFixed()
|
||
|
|
||
|
|