7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
import { ILogItem } from "./ILogItem";
|
|
|
|
export interface IDispatchConfig {}
|
|
|
|
export interface IDispatch {
|
|
process(item: ILogItem): void;
|
|
}
|