UNPKG

container.ts

Version:
7 lines (6 loc) 270 B
import { Field } from "../field"; /** Validate that value is a valid time zone supported by 'luxon' library. */ export declare function isTimeZone(value?: string): string; export declare class TimeZoneField extends Field<string> { validate(value: string): string; }