mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
7 lines
93 B
TypeScript
7 lines
93 B
TypeScript
const a = (b?: number) => b;
|
|
class B {
|
|
c?: number = 1;
|
|
}
|
|
interface C {
|
|
d?: number;
|
|
}
|