class Something {
constructor({ a, b }: { a: number, b?: string | undefined }) {
this.props = { a, b: b === undefined ? "abc" : b }
}
}
class Something {
constructor({ a, b }: { a: number, b?: string | undefined }) {
this.props = { a, b: b === undefined ? "abc" : b }
}
}