mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2026-01-23 10:33:50 +01:00
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;
|