import { makeMetatype } from "@jet/environment/util/metatype"; import { Wrapper } from "./wrapper"; export class ConsoleWrapper extends Wrapper { info(...args) { return this.implementation.info(...args); } error(...args) { return this.implementation.error(...args); } log(...args) { return this.implementation.log(...args); } warn(...args) { return this.implementation.warn(...args); } } ConsoleWrapper.type = makeMetatype("app-store:console-wrapper"); //# sourceMappingURL=console.js.map