0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-29 17:46:30 +01:00
hono/deno_dist/router.ts

13 lines
325 B
TypeScript
Raw Normal View History

2022-07-02 08:09:45 +02:00
export const METHOD_NAME_ALL = 'ALL' as const
export const METHOD_NAME_ALL_LOWERCASE = 'all' as const
export interface Router<T> {
add(method: string, path: string, handler: T): void
match(method: string, path: string): Result<T> | null
}
export interface Result<T> {
handlers: T[]
params: Record<string, string>
}