components/common/component.ts

15 lines
287 B
TypeScript

import { Config } from "./config";
export default class Component {
readonly config: Config;
constructor(config: Config) {
this.config = config;
}
log(message: string) {
if (this.config.debug) {
console.log(this.config.browserName + ': ' + message);
}
}
}