11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
import * as plugins from './smartlog.plugins';
|
|
|
|
import { ILogDestination } from '@pushrocks/smartlog-interfaces';
|
|
|
|
export class LogRouter {
|
|
logDestinations: ILogDestination[] = [];
|
|
constructor() {}
|
|
|
|
addLogDestination;
|
|
}
|