@dfinity/zod-schemas
Version:
A collection of reusable Zod schemas and validators for common data patterns in ICP applications
14 lines (13 loc) • 437 B
TypeScript
/**
* Enum of metadata `id` values assigned to Zod schemas in this library.
*/
export declare enum ZodSchemaId {
/** Metadata id for {@link PrincipalTextSchema}. */
PrincipalText = "PrincipalText",
/** Metadata id for {@link PrincipalSchema}. */
Principal = "Principal",
/** Metadata id for {@link Uint8ArraySchema}. */
Uint8Array = "Uint8Array",
/** Metadata id for {@link UrlSchema}. */
Url = "Url"
}