dinoloop-es8
Version:
A lightweight REST API Library for building scalable Node.js server-side applications powered by Typescript
24 lines (23 loc) • 447 B
TypeScript
export interface IKeyValuePair {
key?: string;
value?: any;
}
export declare class KeyValuePair {
key: string;
value: any;
}
export declare class ModelError {
key: string;
value: string[];
}
export interface IParseProps {
action?: string;
controller?: any;
key?: string;
data?: any;
value?: any;
}
export interface IConversionValidation<T> {
isValid: boolean;
value: T;
}