mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-30 20:24:47 +00:00
14 lines
262 B
JavaScript
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;
|
|
}
|
|
}
|