7 lines
304 B
TypeScript
Executable file
7 lines
304 B
TypeScript
Executable file
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[];
|