mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2026-03-12 16:23:50 +01:00
7 lines
254 B
TypeScript
7 lines
254 B
TypeScript
import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types";
|
|
export type OneOfError = ErrorObject<"oneOf", {
|
|
passingSchemas: [number, number] | null;
|
|
}, AnySchema[]>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|