dinoloop-es8
Version:
A lightweight REST API Library for building scalable Node.js server-side applications powered by Typescript
6 lines (5 loc) • 324 B
TypeScript
import { IKeyValuePair } from '../types';
export declare abstract class RouteUtility {
static getNamedSegmentKeyValues(originalUri: string, requestedUri: string): any;
static mapSegmentsAndQueryToActionArguments(originalUri: string, requestedUri: string, queryString: any, params: string[]): IKeyValuePair[];
}