mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-27 02:41:57 +00:00
18 lines
388 B
JavaScript
18 lines
388 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.IBuilder = void 0;
|
|
class IBuilder {
|
|
constructor(a) {
|
|
Object.defineProperty(this, "a", {
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true,
|
|
value: a
|
|
});
|
|
}
|
|
build() {
|
|
return this.a;
|
|
}
|
|
}
|
|
exports.IBuilder = IBuilder;
|