You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
529 B
9 lines
529 B
import type { KeywordErrorDefinition, KeywordErrorCxt, ErrorObject } from "../../types";
|
|
import { Code } from "../../compile/codegen";
|
|
export declare type _JTDTypeError<K extends string, T extends string, S> = ErrorObject<K, {
|
|
type: T;
|
|
nullable: boolean;
|
|
}, S>;
|
|
export declare function typeError(t: string): KeywordErrorDefinition;
|
|
export declare function typeErrorMessage({ parentSchema }: KeywordErrorCxt, t: string): string;
|
|
export declare function typeErrorParams({ parentSchema }: KeywordErrorCxt, t: string): Code;
|