hono
Version:
Web framework built on Web Standards
11 lines (9 loc) • 357 B
TypeScript
export declare const PATH_ERROR: unique symbol;
export type ParamAssocArray = [string, number][];
export interface Context {
varIndex: number;
}
export declare class Node {
insert(tokens: readonly string[], index: number, paramMap: ParamAssocArray, context: Context, pathErrorCheckOnly: boolean): void;
buildRegExpStr(): string;
}