UNPKG

container.ts

Version:
7 lines (6 loc) 230 B
import { Field } from "../field"; /** Wrapper for validator isMongoId. */ export declare function isMongoId(value?: string): string; export declare class MongoIdField extends Field<string> { validate(value: string): string; }