UNPKG

routup

Version:

Routup is a minimalistic http based routing framework.

8 lines (7 loc) 228 B
import type { DispatchEvent } from '../dispatcher'; import type { RouterPipelineStep } from './constants'; export type RouterPipelineContext = { step: RouterPipelineStep; event: DispatchEvent; stackIndex: number; };