ottoman
Version:
Ottoman Couchbase ODM
8 lines (7 loc) • 388 B
TypeScript
export interface MinmaxOption {
message: string;
val: number;
}
export type NumberFunction = () => number | MinmaxOption;
export declare const validateMinLimit: (val: number, min: number | MinmaxOption | undefined, property: string) => string | void;
export declare const validateMaxLimit: (val: number, max: number | MinmaxOption | undefined, property: string) => string | void;