mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-21 09:23:00 +00: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;
|