UNPKG

@piiano/vault-bundles

Version:

Piiano Vault type definitions for bundles

5 lines (4 loc) 168 B
/** * A validator accepts a value and returns true if the value is determined to be valid. */ export type Validator = (value: unknown) => boolean | Promise<boolean>;