10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
import type { CodeKeywordDefinition, ErrorObject } from "../../types";
|
|
export type UniqueItemsError = ErrorObject<"uniqueItems", {
|
|
i: number;
|
|
j: number;
|
|
}, boolean | {
|
|
$data: string;
|
|
}>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|