UNPKG

287 BTypeScriptView Raw
1import { Location, Request } from './base';
2export declare type MatchedDataOptions = {
3 includeOptionals: boolean;
4 locations: Location[];
5 onlyValidData: boolean;
6};
7export declare function matchedData(req: Request, options?: Partial<MatchedDataOptions>): Record<string, any>;