UNPKG

container.ts

Version:
10 lines (9 loc) 370 B
import { Field } from "../field"; import { IIsString } from "./is-string"; /** Wrapper for validator isBase64. */ export declare function isBase64(value?: string, options?: IIsString): string; export declare class Base64Field extends Field<string> { protected readonly options: IIsString; constructor(options?: IIsString); validate(value: string): string; }