dinoloop-es8
Version:
A lightweight REST API Library for building scalable Node.js server-side applications powered by Typescript
16 lines (15 loc) • 365 B
TypeScript
import { KeyValuePair, ModelError } from '../types';
/**
* Represents the model validation errors
*/
export declare class DinoModel {
isValid?: boolean;
/**
* Key - Param key, Value - Param value
*/
values?: KeyValuePair[];
/**
* Key - Param key, Value - List of validation errors
*/
errors: ModelError[];
}