19 lines
435 B
JavaScript
19 lines
435 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const oak_frontend_base_1 = require("oak-frontend-base");
|
|
class Console extends oak_frontend_base_1.Feature {
|
|
cache;
|
|
constructor(cache) {
|
|
super();
|
|
this.cache = cache;
|
|
}
|
|
getMode(allowUninitialized) {
|
|
return 'systemProvider';
|
|
}
|
|
async initialize() {
|
|
}
|
|
async destroy() {
|
|
}
|
|
}
|
|
exports.default = Console;
|