Files
start-sdk/lib/esm/config/builder.js
2023-02-27 10:38:56 -07:00

14 lines
262 B
JavaScript

export class IBuilder {
constructor(a) {
Object.defineProperty(this, "a", {
enumerable: true,
configurable: true,
writable: true,
value: a
});
}
build() {
return this.a;
}
}