6 lines
254 B
TypeScript
Executable file
6 lines
254 B
TypeScript
Executable file
import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types";
|
|
export type OneOfError = ErrorObject<"oneOf", {
|
|
passingSchemas: [number, number] | null;
|
|
}, AnySchema[]>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|