Proxyを使用しようとしていますが、問題が発生しています。私はそうのようなクラスを持っている: export class Builder {
public doSomething(...args: (string | number | Raw | Object)[]): this {
// Do stuff
return this
}
}
exp
クラスのプロパティをインスタンス化せずにリストする方法を教えてください。 例:の class User {
constructor({ id_user, first_name }) {
this.props = {
id_user,
first_name
}
}
}
// Obviously won't work but you