2026-01-27 17:18:21 +00:00
|
|
|
import type { CodeKeywordDefinition, ErrorObject } from "../../types";
|
|
|
|
|
export type RequiredError = ErrorObject<"required", {
|
|
|
|
|
missingProperty: string;
|
|
|
|
|
}, string[] | {
|
|
|
|
|
$data: string;
|
|
|
|
|
}>;
|
|
|
|
|
declare const def: CodeKeywordDefinition;
|
|
|
|
|
export default def;
|