shitton of the ai changes

This commit is contained in:
2026-05-01 04:54:11 +03:00
parent d95c37a322
commit 8cff086a8e
194 changed files with 29409 additions and 8841 deletions
+9
View File
@@ -0,0 +1,9 @@
export type BoundaryPrimitive = string | number | boolean | bigint | null | undefined;
export type BoundaryValue = BoundaryPrimitive | object | readonly BoundaryValue[];
export interface BoundaryRecord {
readonly [key: string]: BoundaryValue;
}
export type ErrorLike = Error | string | BoundaryRecord;