//#region src/common/types.d.ts type Json = string | number | boolean | null | { [property: string]: Json; } | Json[]; interface ObjectStorage { setItem: (key: string, value: T) => void; getItem: (key: string) => T | undefined; removeItem: (key: string) => void; clear: () => void; allKeys: () => string[]; } type NestedArray = T | Array>; //#endregion export { NestedArray as n, ObjectStorage as r, Json as t }; //# sourceMappingURL=types-BCtWYsuv.d.cts.map