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 • 481 B
TypeScript
export default class RouteRegExpValidator implements RouteInterface<{}> {
protected config: RouteMatchRegExpCtorConfig;
controller: RouteControllerCtorConfig;
protected pathRegExp: RegExp;
constructor(config: RouteMatchRegExpCtorConfig);
canResolve(request: HttpRequest): boolean;
protected matches(request: HttpRequest, pathRegExp: RegExp): boolean;
protected isValid(request: HttpRequest): boolean;
}
//# sourceMappingURL=RouteRegExpValidator.d.ts.map