mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-14 20:24:56 +02:00
8 lines
304 B
TypeScript
8 lines
304 B
TypeScript
import type { KeywordDefinition, ErrorObject } from "ajv";
|
|
import type { DefinitionOptions } from "./_types";
|
|
export declare type SelectError = ErrorObject<"select", {
|
|
failingCase?: string;
|
|
failingDefault?: true;
|
|
}>;
|
|
export default function getDef(opts?: DefinitionOptions): KeywordDefinition[];
|