mirror of https://github.com/jkjoy/sunpeiwen.git
10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
|
import type { CodeKeywordDefinition, ErrorObject } from "../../types";
|
||
|
export declare type UniqueItemsError = ErrorObject<"uniqueItems", {
|
||
|
i: number;
|
||
|
j: number;
|
||
|
}, boolean | {
|
||
|
$data: string;
|
||
|
}>;
|
||
|
declare const def: CodeKeywordDefinition;
|
||
|
export default def;
|