import { ILogItem } from "./ILogItem"; export interface IDispatchConfig {} export interface IDispatch { process(item: ILogItem): void; }