import { CommonCfg } from "./CommonCfg"; export class NamedLogger { cfg: CommonCfg; out: any; constructor(cfg: CommonCfg, out: any, meta?) { this.cfg = cfg; this.out = out; } }