Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
import type { RouteMatch } from '../route-matches/route-match';
|
|
import type { RouteDefinition } from '../route-definitions/route-definition';
|
|
import type { Params } from '../request/params';
|
|
type RouteMatchResult = {
|
|
params?: Params;
|
|
};
|
|
export declare class RouteMatcher<D extends RouteDefinition = RouteDefinition> {
|
|
readonly definition: D;
|
|
private readonly dynamic?;
|
|
/**
|
|
* When set, this is an array of all the other matchers that are duplicates of
|
|
* this one. This is used by the managers to warn the users about possible
|
|
* duplicate matches on routes.
|
|
*/
|
|
duplicated?: Array<RouteMatcher>;
|
|
constructor(definition: D);
|
|
/**
|
|
* Identity returns the identity part of the matcher. This is used to compare
|
|
* a unique matcher to another. This is also used when sorting dynamic routes,
|
|
* so it must contain the pathname part.
|
|
*/
|
|
get identity(): string;
|
|
get isDynamic(): boolean;
|
|
match(pathname: string): RouteMatch<D> | null;
|
|
test(pathname: string): RouteMatchResult | null;
|
|
}
|
|
export {};
|