if.d.ts 236 B

123456
  1. import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types";
  2. export type IfKeywordError = ErrorObject<"if", {
  3. failingKeyword: string;
  4. }, AnySchema>;
  5. declare const def: CodeKeywordDefinition;
  6. export default def;