import { Context } from '../context'; export const Dispatcher = Symbol('Dispatcher'); export interface Dispatcher { dispatch(ctx: T): Promise; }