9 lines
252 B
TypeScript
9 lines
252 B
TypeScript
import type { CodeKeywordDefinition, ErrorObject } from "../../types";
|
|
export type MultipleOfError = ErrorObject<"multipleOf", {
|
|
multipleOf: number;
|
|
}, number | {
|
|
$data: string;
|
|
}>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|