blob: 1bbfac0df322f15b991f4ddb7e0f69809bff91a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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
|