/** * @since 1.0.0 * @category models */ export interface RouterConfig { readonly ignoreTrailingSlash: boolean; readonly ignoreDuplicateSlashes: boolean; readonly caseSensitive: boolean; readonly maxParamLength: number; } /** * @since 1.0.0 * @category models */ export type PathInput = `/${string}` | "*"; /** * @since 1.0.0 * @category models */ export interface Router { readonly on: (method: string | Iterable, path: PathInput, handler: A) => void; readonly all: (path: PathInput, handler: A) => void; readonly find: (method: string, url: string) => FindResult | undefined; readonly has: (method: string, url: string) => boolean; } /** * @since 1.0.0 * @category models */ export interface FindResult { readonly handler: A; readonly params: Record; readonly searchParams: Record>; } /** * @since 1.0.0 * @category constructors */ export declare const make: (options?: Partial) => Router; //# sourceMappingURL=index.d.ts.map