recipe-ts-runtime
Version:
TypeScript run-time library for the Recipe framework
9 lines (8 loc) • 349 B
TypeScript
import { Dispatcher, Oven } from "./Oven";
import { BackendOven } from "./BackendOven";
export declare class DirectDispatchOven extends Oven {
readonly backendOven: BackendOven;
constructor(backendOven: BackendOven);
addDispatcher(domain: string, dispatcher: Dispatcher): void;
setDefaultDispatcher(dispatcher?: Dispatcher): void;
}