source: trip-planner-front/node_modules/ajv-formats/dist/formats.d.ts@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 643 bytes
Line 
1import type { Format } from "ajv";
2export declare type FormatMode = "fast" | "full";
3export declare type FormatName = "date" | "time" | "date-time" | "duration" | "uri" | "uri-reference" | "uri-template" | "url" | "email" | "hostname" | "ipv4" | "ipv6" | "regex" | "uuid" | "json-pointer" | "json-pointer-uri-fragment" | "relative-json-pointer" | "byte" | "int32" | "int64" | "float" | "double" | "password" | "binary";
4export declare type DefinedFormats = {
5 [key in FormatName]: Format;
6};
7export declare const fullFormats: DefinedFormats;
8export declare const fastFormats: DefinedFormats;
9export declare const formatNames: FormatName[];
Note: See TracBrowser for help on using the repository browser.