@tanstack/query-async-storage-persister 5.90.24 → 5.90.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,78 @@
1
+ import type { AsyncStorage } from '@tanstack/query-persist-client-core';
2
+ import type { MaybePromise } from '@tanstack/query-persist-client-core';
3
+ import { Options } from 'tsup';
4
+ import type { PersistedClient } from '@tanstack/query-persist-client-core';
5
+ import type { Persister } from '@tanstack/query-persist-client-core';
6
+ import type { Promisable } from '@tanstack/query-persist-client-core';
7
+ import { UserConfig } from 'vite';
8
+
9
+ export declare type AsyncPersistRetryer = (props: {
10
+ persistedClient: PersistedClient;
11
+ error: Error;
12
+ errorCount: number;
13
+ }) => Promisable<PersistedClient | undefined>;
14
+
15
+ export declare function asyncThrottle<TArgs extends ReadonlyArray<unknown>>(func: (...args: TArgs) => Promise<void>, { interval, onError }?: AsyncThrottleOptions): (...args: TArgs) => Promise<void>;
16
+
17
+ declare interface AsyncThrottleOptions {
18
+ interval?: number;
19
+ onError?: (error: unknown) => void;
20
+ }
21
+
22
+ export declare const createAsyncStoragePersister: ({ storage, key, throttleTime, serialize, deserialize, retry, }: CreateAsyncStoragePersisterOptions) => Persister;
23
+
24
+ declare interface CreateAsyncStoragePersisterOptions {
25
+ /** The storage client used for setting and retrieving items from cache.
26
+ * For SSR pass in `undefined`. Note that window.localStorage can be
27
+ * `null` in Android WebViews depending on how they are configured.
28
+ */
29
+ storage: AsyncStorage<string> | undefined | null;
30
+ /** The key to use when storing the cache */
31
+ key?: string;
32
+ /** To avoid spamming,
33
+ * pass a time in ms to throttle saving the cache to disk */
34
+ throttleTime?: number;
35
+ /**
36
+ * How to serialize the data to storage.
37
+ * @default `JSON.stringify`
38
+ */
39
+ serialize?: (client: PersistedClient) => MaybePromise<string>;
40
+ /**
41
+ * How to deserialize the data from storage.
42
+ * @default `JSON.parse`
43
+ */
44
+ deserialize?: (cachedString: string) => MaybePromise<PersistedClient>;
45
+ retry?: AsyncPersistRetryer;
46
+ }
47
+
48
+ export declare const default_alias: any[];
49
+
50
+ export declare const default_alias_1: any[];
51
+
52
+ export declare const default_alias_2: Options | Options[] | ((overrideOptions: Options) => Options | Options[] | Promise<Options | Options[]>);
53
+
54
+ export declare const default_alias_3: UserConfig;
55
+
56
+ /**
57
+ * @param {Object} opts - Options for building configurations.
58
+ * @param {string[]} opts.entry - The entry array.
59
+ * @returns {import('tsup').Options}
60
+ */
61
+ export declare function legacyConfig(opts: {
62
+ entry: string[];
63
+ }): Options;
64
+
65
+ /**
66
+ * @param {Object} opts - Options for building configurations.
67
+ * @param {string[]} opts.entry - The entry array.
68
+ * @returns {import('tsup').Options}
69
+ */
70
+ export declare function modernConfig(opts: {
71
+ entry: string[];
72
+ }): Options;
73
+
74
+ export declare function noop(): void;
75
+
76
+ export declare function noop(): undefined;
77
+
78
+ export { }
@@ -0,0 +1,78 @@
1
+ import type { AsyncStorage } from '@tanstack/query-persist-client-core';
2
+ import type { MaybePromise } from '@tanstack/query-persist-client-core';
3
+ import { Options } from 'tsup';
4
+ import type { PersistedClient } from '@tanstack/query-persist-client-core';
5
+ import type { Persister } from '@tanstack/query-persist-client-core';
6
+ import type { Promisable } from '@tanstack/query-persist-client-core';
7
+ import { UserConfig } from 'vite';
8
+
9
+ export declare type AsyncPersistRetryer = (props: {
10
+ persistedClient: PersistedClient;
11
+ error: Error;
12
+ errorCount: number;
13
+ }) => Promisable<PersistedClient | undefined>;
14
+
15
+ export declare function asyncThrottle<TArgs extends ReadonlyArray<unknown>>(func: (...args: TArgs) => Promise<void>, { interval, onError }?: AsyncThrottleOptions): (...args: TArgs) => Promise<void>;
16
+
17
+ declare interface AsyncThrottleOptions {
18
+ interval?: number;
19
+ onError?: (error: unknown) => void;
20
+ }
21
+
22
+ export declare const createAsyncStoragePersister: ({ storage, key, throttleTime, serialize, deserialize, retry, }: CreateAsyncStoragePersisterOptions) => Persister;
23
+
24
+ declare interface CreateAsyncStoragePersisterOptions {
25
+ /** The storage client used for setting and retrieving items from cache.
26
+ * For SSR pass in `undefined`. Note that window.localStorage can be
27
+ * `null` in Android WebViews depending on how they are configured.
28
+ */
29
+ storage: AsyncStorage<string> | undefined | null;
30
+ /** The key to use when storing the cache */
31
+ key?: string;
32
+ /** To avoid spamming,
33
+ * pass a time in ms to throttle saving the cache to disk */
34
+ throttleTime?: number;
35
+ /**
36
+ * How to serialize the data to storage.
37
+ * @default `JSON.stringify`
38
+ */
39
+ serialize?: (client: PersistedClient) => MaybePromise<string>;
40
+ /**
41
+ * How to deserialize the data from storage.
42
+ * @default `JSON.parse`
43
+ */
44
+ deserialize?: (cachedString: string) => MaybePromise<PersistedClient>;
45
+ retry?: AsyncPersistRetryer;
46
+ }
47
+
48
+ export declare const default_alias: any[];
49
+
50
+ export declare const default_alias_1: any[];
51
+
52
+ export declare const default_alias_2: Options | Options[] | ((overrideOptions: Options) => Options | Options[] | Promise<Options | Options[]>);
53
+
54
+ export declare const default_alias_3: UserConfig;
55
+
56
+ /**
57
+ * @param {Object} opts - Options for building configurations.
58
+ * @param {string[]} opts.entry - The entry array.
59
+ * @returns {import('tsup').Options}
60
+ */
61
+ export declare function legacyConfig(opts: {
62
+ entry: string[];
63
+ }): Options;
64
+
65
+ /**
66
+ * @param {Object} opts - Options for building configurations.
67
+ * @param {string[]} opts.entry - The entry array.
68
+ * @returns {import('tsup').Options}
69
+ */
70
+ export declare function modernConfig(opts: {
71
+ entry: string[];
72
+ }): Options;
73
+
74
+ export declare function noop(): void;
75
+
76
+ export declare function noop(): undefined;
77
+
78
+ export { }
@@ -1,7 +1 @@
1
- interface AsyncThrottleOptions {
2
- interval?: number;
3
- onError?: (error: unknown) => void;
4
- }
5
- declare function asyncThrottle<TArgs extends ReadonlyArray<unknown>>(func: (...args: TArgs) => Promise<void>, { interval, onError }?: AsyncThrottleOptions): (...args: TArgs) => Promise<void>;
6
-
7
- export { asyncThrottle };
1
+ export { asyncThrottle } from './_tsup-dts-rollup.cjs';
@@ -1,7 +1 @@
1
- interface AsyncThrottleOptions {
2
- interval?: number;
3
- onError?: (error: unknown) => void;
4
- }
5
- declare function asyncThrottle<TArgs extends ReadonlyArray<unknown>>(func: (...args: TArgs) => Promise<void>, { interval, onError }?: AsyncThrottleOptions): (...args: TArgs) => Promise<void>;
6
-
7
- export { asyncThrottle };
1
+ export { asyncThrottle } from './_tsup-dts-rollup.js';
@@ -1,33 +1,2 @@
1
- import { PersistedClient, Promisable, AsyncStorage, MaybePromise, Persister } from '@tanstack/query-persist-client-core';
2
-
3
- type AsyncPersistRetryer = (props: {
4
- persistedClient: PersistedClient;
5
- error: Error;
6
- errorCount: number;
7
- }) => Promisable<PersistedClient | undefined>;
8
- interface CreateAsyncStoragePersisterOptions {
9
- /** The storage client used for setting and retrieving items from cache.
10
- * For SSR pass in `undefined`. Note that window.localStorage can be
11
- * `null` in Android WebViews depending on how they are configured.
12
- */
13
- storage: AsyncStorage<string> | undefined | null;
14
- /** The key to use when storing the cache */
15
- key?: string;
16
- /** To avoid spamming,
17
- * pass a time in ms to throttle saving the cache to disk */
18
- throttleTime?: number;
19
- /**
20
- * How to serialize the data to storage.
21
- * @default `JSON.stringify`
22
- */
23
- serialize?: (client: PersistedClient) => MaybePromise<string>;
24
- /**
25
- * How to deserialize the data from storage.
26
- * @default `JSON.parse`
27
- */
28
- deserialize?: (cachedString: string) => MaybePromise<PersistedClient>;
29
- retry?: AsyncPersistRetryer;
30
- }
31
- declare const createAsyncStoragePersister: ({ storage, key, throttleTime, serialize, deserialize, retry, }: CreateAsyncStoragePersisterOptions) => Persister;
32
-
33
- export { type AsyncPersistRetryer, createAsyncStoragePersister };
1
+ export { AsyncPersistRetryer } from './_tsup-dts-rollup.cjs';
2
+ export { createAsyncStoragePersister } from './_tsup-dts-rollup.cjs';
@@ -1,33 +1,2 @@
1
- import { PersistedClient, Promisable, AsyncStorage, MaybePromise, Persister } from '@tanstack/query-persist-client-core';
2
-
3
- type AsyncPersistRetryer = (props: {
4
- persistedClient: PersistedClient;
5
- error: Error;
6
- errorCount: number;
7
- }) => Promisable<PersistedClient | undefined>;
8
- interface CreateAsyncStoragePersisterOptions {
9
- /** The storage client used for setting and retrieving items from cache.
10
- * For SSR pass in `undefined`. Note that window.localStorage can be
11
- * `null` in Android WebViews depending on how they are configured.
12
- */
13
- storage: AsyncStorage<string> | undefined | null;
14
- /** The key to use when storing the cache */
15
- key?: string;
16
- /** To avoid spamming,
17
- * pass a time in ms to throttle saving the cache to disk */
18
- throttleTime?: number;
19
- /**
20
- * How to serialize the data to storage.
21
- * @default `JSON.stringify`
22
- */
23
- serialize?: (client: PersistedClient) => MaybePromise<string>;
24
- /**
25
- * How to deserialize the data from storage.
26
- * @default `JSON.parse`
27
- */
28
- deserialize?: (cachedString: string) => MaybePromise<PersistedClient>;
29
- retry?: AsyncPersistRetryer;
30
- }
31
- declare const createAsyncStoragePersister: ({ storage, key, throttleTime, serialize, deserialize, retry, }: CreateAsyncStoragePersisterOptions) => Persister;
32
-
33
- export { type AsyncPersistRetryer, createAsyncStoragePersister };
1
+ export { AsyncPersistRetryer } from './_tsup-dts-rollup.js';
2
+ export { createAsyncStoragePersister } from './_tsup-dts-rollup.js';
@@ -1,4 +1 @@
1
- declare function noop(): void;
2
- declare function noop(): undefined;
3
-
4
- export { noop };
1
+ export { noop } from './_tsup-dts-rollup.cjs';
@@ -1,4 +1 @@
1
- declare function noop(): void;
2
- declare function noop(): undefined;
3
-
4
- export { noop };
1
+ export { noop } from './_tsup-dts-rollup.js';
@@ -0,0 +1,78 @@
1
+ import type { AsyncStorage } from '@tanstack/query-persist-client-core';
2
+ import type { MaybePromise } from '@tanstack/query-persist-client-core';
3
+ import { Options } from 'tsup';
4
+ import type { PersistedClient } from '@tanstack/query-persist-client-core';
5
+ import type { Persister } from '@tanstack/query-persist-client-core';
6
+ import type { Promisable } from '@tanstack/query-persist-client-core';
7
+ import { UserConfig } from 'vite';
8
+
9
+ export declare type AsyncPersistRetryer = (props: {
10
+ persistedClient: PersistedClient;
11
+ error: Error;
12
+ errorCount: number;
13
+ }) => Promisable<PersistedClient | undefined>;
14
+
15
+ export declare function asyncThrottle<TArgs extends ReadonlyArray<unknown>>(func: (...args: TArgs) => Promise<void>, { interval, onError }?: AsyncThrottleOptions): (...args: TArgs) => Promise<void>;
16
+
17
+ declare interface AsyncThrottleOptions {
18
+ interval?: number;
19
+ onError?: (error: unknown) => void;
20
+ }
21
+
22
+ export declare const createAsyncStoragePersister: ({ storage, key, throttleTime, serialize, deserialize, retry, }: CreateAsyncStoragePersisterOptions) => Persister;
23
+
24
+ declare interface CreateAsyncStoragePersisterOptions {
25
+ /** The storage client used for setting and retrieving items from cache.
26
+ * For SSR pass in `undefined`. Note that window.localStorage can be
27
+ * `null` in Android WebViews depending on how they are configured.
28
+ */
29
+ storage: AsyncStorage<string> | undefined | null;
30
+ /** The key to use when storing the cache */
31
+ key?: string;
32
+ /** To avoid spamming,
33
+ * pass a time in ms to throttle saving the cache to disk */
34
+ throttleTime?: number;
35
+ /**
36
+ * How to serialize the data to storage.
37
+ * @default `JSON.stringify`
38
+ */
39
+ serialize?: (client: PersistedClient) => MaybePromise<string>;
40
+ /**
41
+ * How to deserialize the data from storage.
42
+ * @default `JSON.parse`
43
+ */
44
+ deserialize?: (cachedString: string) => MaybePromise<PersistedClient>;
45
+ retry?: AsyncPersistRetryer;
46
+ }
47
+
48
+ export declare const default_alias: any[];
49
+
50
+ export declare const default_alias_1: any[];
51
+
52
+ export declare const default_alias_2: Options | Options[] | ((overrideOptions: Options) => Options | Options[] | Promise<Options | Options[]>);
53
+
54
+ export declare const default_alias_3: UserConfig;
55
+
56
+ /**
57
+ * @param {Object} opts - Options for building configurations.
58
+ * @param {string[]} opts.entry - The entry array.
59
+ * @returns {import('tsup').Options}
60
+ */
61
+ export declare function legacyConfig(opts: {
62
+ entry: string[];
63
+ }): Options;
64
+
65
+ /**
66
+ * @param {Object} opts - Options for building configurations.
67
+ * @param {string[]} opts.entry - The entry array.
68
+ * @returns {import('tsup').Options}
69
+ */
70
+ export declare function modernConfig(opts: {
71
+ entry: string[];
72
+ }): Options;
73
+
74
+ export declare function noop(): void;
75
+
76
+ export declare function noop(): undefined;
77
+
78
+ export { }
@@ -0,0 +1,78 @@
1
+ import type { AsyncStorage } from '@tanstack/query-persist-client-core';
2
+ import type { MaybePromise } from '@tanstack/query-persist-client-core';
3
+ import { Options } from 'tsup';
4
+ import type { PersistedClient } from '@tanstack/query-persist-client-core';
5
+ import type { Persister } from '@tanstack/query-persist-client-core';
6
+ import type { Promisable } from '@tanstack/query-persist-client-core';
7
+ import { UserConfig } from 'vite';
8
+
9
+ export declare type AsyncPersistRetryer = (props: {
10
+ persistedClient: PersistedClient;
11
+ error: Error;
12
+ errorCount: number;
13
+ }) => Promisable<PersistedClient | undefined>;
14
+
15
+ export declare function asyncThrottle<TArgs extends ReadonlyArray<unknown>>(func: (...args: TArgs) => Promise<void>, { interval, onError }?: AsyncThrottleOptions): (...args: TArgs) => Promise<void>;
16
+
17
+ declare interface AsyncThrottleOptions {
18
+ interval?: number;
19
+ onError?: (error: unknown) => void;
20
+ }
21
+
22
+ export declare const createAsyncStoragePersister: ({ storage, key, throttleTime, serialize, deserialize, retry, }: CreateAsyncStoragePersisterOptions) => Persister;
23
+
24
+ declare interface CreateAsyncStoragePersisterOptions {
25
+ /** The storage client used for setting and retrieving items from cache.
26
+ * For SSR pass in `undefined`. Note that window.localStorage can be
27
+ * `null` in Android WebViews depending on how they are configured.
28
+ */
29
+ storage: AsyncStorage<string> | undefined | null;
30
+ /** The key to use when storing the cache */
31
+ key?: string;
32
+ /** To avoid spamming,
33
+ * pass a time in ms to throttle saving the cache to disk */
34
+ throttleTime?: number;
35
+ /**
36
+ * How to serialize the data to storage.
37
+ * @default `JSON.stringify`
38
+ */
39
+ serialize?: (client: PersistedClient) => MaybePromise<string>;
40
+ /**
41
+ * How to deserialize the data from storage.
42
+ * @default `JSON.parse`
43
+ */
44
+ deserialize?: (cachedString: string) => MaybePromise<PersistedClient>;
45
+ retry?: AsyncPersistRetryer;
46
+ }
47
+
48
+ export declare const default_alias: any[];
49
+
50
+ export declare const default_alias_1: any[];
51
+
52
+ export declare const default_alias_2: Options | Options[] | ((overrideOptions: Options) => Options | Options[] | Promise<Options | Options[]>);
53
+
54
+ export declare const default_alias_3: UserConfig;
55
+
56
+ /**
57
+ * @param {Object} opts - Options for building configurations.
58
+ * @param {string[]} opts.entry - The entry array.
59
+ * @returns {import('tsup').Options}
60
+ */
61
+ export declare function legacyConfig(opts: {
62
+ entry: string[];
63
+ }): Options;
64
+
65
+ /**
66
+ * @param {Object} opts - Options for building configurations.
67
+ * @param {string[]} opts.entry - The entry array.
68
+ * @returns {import('tsup').Options}
69
+ */
70
+ export declare function modernConfig(opts: {
71
+ entry: string[];
72
+ }): Options;
73
+
74
+ export declare function noop(): void;
75
+
76
+ export declare function noop(): undefined;
77
+
78
+ export { }
@@ -1,7 +1 @@
1
- interface AsyncThrottleOptions {
2
- interval?: number;
3
- onError?: (error: unknown) => void;
4
- }
5
- declare function asyncThrottle<TArgs extends ReadonlyArray<unknown>>(func: (...args: TArgs) => Promise<void>, { interval, onError }?: AsyncThrottleOptions): (...args: TArgs) => Promise<void>;
6
-
7
- export { asyncThrottle };
1
+ export { asyncThrottle } from './_tsup-dts-rollup.cjs';
@@ -1,7 +1 @@
1
- interface AsyncThrottleOptions {
2
- interval?: number;
3
- onError?: (error: unknown) => void;
4
- }
5
- declare function asyncThrottle<TArgs extends ReadonlyArray<unknown>>(func: (...args: TArgs) => Promise<void>, { interval, onError }?: AsyncThrottleOptions): (...args: TArgs) => Promise<void>;
6
-
7
- export { asyncThrottle };
1
+ export { asyncThrottle } from './_tsup-dts-rollup.js';
@@ -1,33 +1,2 @@
1
- import { PersistedClient, Promisable, AsyncStorage, MaybePromise, Persister } from '@tanstack/query-persist-client-core';
2
-
3
- type AsyncPersistRetryer = (props: {
4
- persistedClient: PersistedClient;
5
- error: Error;
6
- errorCount: number;
7
- }) => Promisable<PersistedClient | undefined>;
8
- interface CreateAsyncStoragePersisterOptions {
9
- /** The storage client used for setting and retrieving items from cache.
10
- * For SSR pass in `undefined`. Note that window.localStorage can be
11
- * `null` in Android WebViews depending on how they are configured.
12
- */
13
- storage: AsyncStorage<string> | undefined | null;
14
- /** The key to use when storing the cache */
15
- key?: string;
16
- /** To avoid spamming,
17
- * pass a time in ms to throttle saving the cache to disk */
18
- throttleTime?: number;
19
- /**
20
- * How to serialize the data to storage.
21
- * @default `JSON.stringify`
22
- */
23
- serialize?: (client: PersistedClient) => MaybePromise<string>;
24
- /**
25
- * How to deserialize the data from storage.
26
- * @default `JSON.parse`
27
- */
28
- deserialize?: (cachedString: string) => MaybePromise<PersistedClient>;
29
- retry?: AsyncPersistRetryer;
30
- }
31
- declare const createAsyncStoragePersister: ({ storage, key, throttleTime, serialize, deserialize, retry, }: CreateAsyncStoragePersisterOptions) => Persister;
32
-
33
- export { type AsyncPersistRetryer, createAsyncStoragePersister };
1
+ export { AsyncPersistRetryer } from './_tsup-dts-rollup.cjs';
2
+ export { createAsyncStoragePersister } from './_tsup-dts-rollup.cjs';
@@ -1,33 +1,2 @@
1
- import { PersistedClient, Promisable, AsyncStorage, MaybePromise, Persister } from '@tanstack/query-persist-client-core';
2
-
3
- type AsyncPersistRetryer = (props: {
4
- persistedClient: PersistedClient;
5
- error: Error;
6
- errorCount: number;
7
- }) => Promisable<PersistedClient | undefined>;
8
- interface CreateAsyncStoragePersisterOptions {
9
- /** The storage client used for setting and retrieving items from cache.
10
- * For SSR pass in `undefined`. Note that window.localStorage can be
11
- * `null` in Android WebViews depending on how they are configured.
12
- */
13
- storage: AsyncStorage<string> | undefined | null;
14
- /** The key to use when storing the cache */
15
- key?: string;
16
- /** To avoid spamming,
17
- * pass a time in ms to throttle saving the cache to disk */
18
- throttleTime?: number;
19
- /**
20
- * How to serialize the data to storage.
21
- * @default `JSON.stringify`
22
- */
23
- serialize?: (client: PersistedClient) => MaybePromise<string>;
24
- /**
25
- * How to deserialize the data from storage.
26
- * @default `JSON.parse`
27
- */
28
- deserialize?: (cachedString: string) => MaybePromise<PersistedClient>;
29
- retry?: AsyncPersistRetryer;
30
- }
31
- declare const createAsyncStoragePersister: ({ storage, key, throttleTime, serialize, deserialize, retry, }: CreateAsyncStoragePersisterOptions) => Persister;
32
-
33
- export { type AsyncPersistRetryer, createAsyncStoragePersister };
1
+ export { AsyncPersistRetryer } from './_tsup-dts-rollup.js';
2
+ export { createAsyncStoragePersister } from './_tsup-dts-rollup.js';
@@ -1,4 +1 @@
1
- declare function noop(): void;
2
- declare function noop(): undefined;
3
-
4
- export { noop };
1
+ export { noop } from './_tsup-dts-rollup.cjs';
@@ -1,4 +1 @@
1
- declare function noop(): void;
2
- declare function noop(): undefined;
3
-
4
- export { noop };
1
+ export { noop } from './_tsup-dts-rollup.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/query-async-storage-persister",
3
- "version": "5.90.24",
3
+ "version": "5.90.27",
4
4
  "description": "A persister for asynchronous storages, to be used with TanStack/Query",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -40,8 +40,8 @@
40
40
  "!src/__tests__"
41
41
  ],
42
42
  "dependencies": {
43
- "@tanstack/query-core": "5.90.20",
44
- "@tanstack/query-persist-client-core": "5.92.1"
43
+ "@tanstack/query-core": "5.91.2",
44
+ "@tanstack/query-persist-client-core": "5.92.4"
45
45
  },
46
46
  "devDependencies": {
47
47
  "npm-run-all2": "^5.0.0",
@@ -52,15 +52,14 @@
52
52
  "compile": "tsc --build",
53
53
  "test:eslint": "eslint --concurrency=auto ./src",
54
54
  "test:types": "npm-run-all --serial test:types:*",
55
- "test:types:ts50": "node ../../node_modules/typescript50/lib/tsc.js --build",
56
- "test:types:ts51": "node ../../node_modules/typescript51/lib/tsc.js --build",
57
- "test:types:ts52": "node ../../node_modules/typescript52/lib/tsc.js --build",
58
- "test:types:ts53": "node ../../node_modules/typescript53/lib/tsc.js --build",
59
55
  "test:types:ts54": "node ../../node_modules/typescript54/lib/tsc.js --build",
60
56
  "test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js --build",
61
57
  "test:types:ts56": "node ../../node_modules/typescript56/lib/tsc.js --build",
62
58
  "test:types:ts57": "node ../../node_modules/typescript57/lib/tsc.js --build",
59
+ "test:types:ts58": "node ../../node_modules/typescript58/lib/tsc.js --build",
60
+ "test:types:ts59": "node ../../node_modules/typescript59/lib/tsc.js --build",
63
61
  "test:types:tscurrent": "tsc --build",
62
+ "test:types:ts60": "node ../../node_modules/typescript60/lib/tsc.js --build",
64
63
  "test:lib": "vitest",
65
64
  "test:lib:dev": "pnpm run test:lib --watch",
66
65
  "test:build": "publint --strict && attw --pack",