firebase-tools
Version:
Command-Line Interface for Firebase
22 lines (21 loc) • 518 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Driver = void 0;
class Driver {
constructor(spec) {
this.spec = spec;
}
install() {
throw new Error("install() not implemented");
}
build() {
throw new Error("build() not implemented");
}
export(bundle) {
throw new Error("export() not implemented");
}
execHook(bundle, hook) {
throw new Error("execHook() not implemented");
}
}
exports.Driver = Driver;
;