md-toy-blog
Version:
Very simple Markdown blog: serves your md as html without fancy databases. You will only spend time writing the actual data.
10 lines • 459 B
TypeScript
export default class RoutePathValidator implements RouteInterface<{}> {
protected config: RouteMatchPathCtorConfig;
controller: RouteControllerCtorConfig;
protected paths: string[];
constructor(config: RouteMatchPathCtorConfig);
canResolve(request: HttpRequest): boolean;
protected matches(req: HttpRequest, paths: string[]): boolean;
protected isValid(req: HttpRequest): boolean;
}
//# sourceMappingURL=RoutePathValidator.d.ts.map