required.d.ts 255 B

12345678
  1. import type { CodeKeywordDefinition, ErrorObject } from "../../types";
  2. export type RequiredError = ErrorObject<"required", {
  3. missingProperty: string;
  4. }, string[] | {
  5. $data: string;
  6. }>;
  7. declare const def: CodeKeywordDefinition;
  8. export default def;