Interface Dispatcher<T, P>

Instances of a Dispatcher accept one or more tasks as parameters. Each task is processed in sequence starting with the leftmost parameter. If a task is an Action it will be passed sequentially to each ActionHandler. If a task is an InlineHandler that inline handler function will be invoked.

interface Dispatcher<T, P> ((...tasks) => void)

Type Parameters