dependentRequired.d.ts 343 B

12345
  1. import type { CodeKeywordDefinition, ErrorObject } from "../../types";
  2. import { DependenciesErrorParams, PropertyDependencies } from "../applicator/dependencies";
  3. export type DependentRequiredError = ErrorObject<"dependentRequired", DependenciesErrorParams, PropertyDependencies>;
  4. declare const def: CodeKeywordDefinition;
  5. export default def;