@delta-comic/db 2.2.0 → 3.0.0-next.11

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,467 @@
1
+ import { isTauri } from "@tauri-apps/api/core";
2
+ import { InsertObject, JSONColumnType, Kysely, Kysely as Kysely$1, SelectQueryBuilder, Selectable } from "kysely";
3
+ import { EntryKey } from "@pinia/colada";
4
+ import { FormResult, FormSingleConfigure, PluginManifest, SourcedKeyType, SourcedValue, UniEpRaw, UniItem, UniItemAuthor, UniItemRaw } from "@delta-comic/model";
5
+ import { MaybeRefOrGetter, Ref } from "vue";
6
+ declare namespace utils_d_exports {
7
+ export { CommonQueryKey, countDb, withTransition };
8
+ }
9
+ declare const withTransition: <T>(handler: (trx: Kysely$1<DB>) => Promise<T>, trx?: Kysely$1<DB>) => Promise<T>;
10
+ declare function countDb<TB extends keyof DB, O extends object>(sql: SelectQueryBuilder<DB, TB, O>): Promise<number>;
11
+ declare enum CommonQueryKey {
12
+ common = "db"
13
+ }
14
+ declare namespace itemStore_d_exports {
15
+ export { QueryKey$5 as QueryKey, StorableItem, StoredItem, Table$6 as Table, itemKey, useUpsert$4 as useUpsert };
16
+ }
17
+ interface Table$6 {
18
+ /** @description primary key */
19
+ key: string;
20
+ item: JSONColumnType<UniItemRaw>;
21
+ }
22
+ type StorableItem = UniItem | UniItemRaw;
23
+ type StoredItem = Selectable<Table$6>;
24
+ declare const itemKey: SourcedValue<[string, string]>;
25
+ declare enum QueryKey$5 {
26
+ item = "db:itemStore:"
27
+ }
28
+ declare const useUpsert$4: () => {
29
+ upsert: (vars: {
30
+ item: StorableItem;
31
+ trx?: Kysely$1<DB>;
32
+ }) => Promise<string>;
33
+ key: (CommonQueryKey | QueryKey$5)[];
34
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<string, Error, undefined>>;
35
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
36
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
37
+ data: import("vue").ShallowRef<string | undefined>;
38
+ error: import("vue").ShallowRef<Error | null>;
39
+ isLoading: import("vue").ComputedRef<boolean>;
40
+ variables: import("vue").ShallowRef<{
41
+ item: StorableItem;
42
+ trx?: Kysely$1<DB>;
43
+ } | undefined>;
44
+ mutate: (vars: {
45
+ item: StorableItem;
46
+ trx?: Kysely$1<DB>;
47
+ }) => void;
48
+ reset: () => void;
49
+ };
50
+ declare namespace favourite_d_exports {
51
+ export { Card, CardTable, Item$3 as Item, ItemTable, QueryKey$4 as QueryKey, useCreateCard, useMoveItem, useQueryCard, useQueryItem, useUpsertItem };
52
+ }
53
+ interface CardTable {
54
+ title: string;
55
+ private: boolean;
56
+ description: string;
57
+ /** @description primary key */
58
+ createAt: number;
59
+ }
60
+ type Card = Selectable<CardTable>;
61
+ interface ItemTable {
62
+ itemKey: string;
63
+ /** @description foreign key */
64
+ belongTo: CardTable['createAt'];
65
+ addTime: number;
66
+ }
67
+ type Item$3 = Selectable<ItemTable>;
68
+ declare enum QueryKey$4 {
69
+ item = "db:favouriteItem:",
70
+ card = "db:favouriteCard:"
71
+ }
72
+ declare const useUpsertItem: () => {
73
+ upsert: (vars: {
74
+ item: StorableItem;
75
+ belongTos: Item$3["belongTo"][];
76
+ trx?: Kysely$1<DB>;
77
+ }) => Promise<void>;
78
+ key: (CommonQueryKey | QueryKey$4 | QueryKey$5)[];
79
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<void, Error, undefined>>;
80
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
81
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
82
+ data: import("vue").ShallowRef<void | undefined>;
83
+ error: import("vue").ShallowRef<Error | null>;
84
+ isLoading: import("vue").ComputedRef<boolean>;
85
+ variables: import("vue").ShallowRef<{
86
+ item: StorableItem;
87
+ belongTos: Item$3["belongTo"][];
88
+ trx?: Kysely$1<DB>;
89
+ } | undefined>;
90
+ mutate: (vars: {
91
+ item: StorableItem;
92
+ belongTos: Item$3["belongTo"][];
93
+ trx?: Kysely$1<DB>;
94
+ }) => void;
95
+ reset: () => void;
96
+ };
97
+ declare const useMoveItem: () => {
98
+ move: (vars: {
99
+ item: StorableItem;
100
+ from: Item$3["belongTo"];
101
+ aims: Item$3["belongTo"][];
102
+ trx?: Kysely$1<DB>;
103
+ }) => Promise<void>;
104
+ key: QueryKey$4[];
105
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<void, Error, undefined>>;
106
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
107
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
108
+ data: import("vue").ShallowRef<void | undefined>;
109
+ error: import("vue").ShallowRef<Error | null>;
110
+ isLoading: import("vue").ComputedRef<boolean>;
111
+ variables: import("vue").ShallowRef<{
112
+ item: StorableItem;
113
+ from: Item$3["belongTo"];
114
+ aims: Item$3["belongTo"][];
115
+ trx?: Kysely$1<DB>;
116
+ } | undefined>;
117
+ mutate: (vars: {
118
+ item: StorableItem;
119
+ from: Item$3["belongTo"];
120
+ aims: Item$3["belongTo"][];
121
+ trx?: Kysely$1<DB>;
122
+ }) => void;
123
+ reset: () => void;
124
+ };
125
+ declare const useCreateCard: () => {
126
+ createCard: (vars: {
127
+ card: Card;
128
+ trx?: Kysely$1<DB>;
129
+ }) => Promise<void>;
130
+ key: QueryKey$4[];
131
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<void, Error, undefined>>;
132
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
133
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
134
+ data: import("vue").ShallowRef<void | undefined>;
135
+ error: import("vue").ShallowRef<Error | null>;
136
+ isLoading: import("vue").ComputedRef<boolean>;
137
+ variables: import("vue").ShallowRef<{
138
+ card: Card;
139
+ trx?: Kysely$1<DB>;
140
+ } | undefined>;
141
+ mutate: (vars: {
142
+ card: Card;
143
+ trx?: Kysely$1<DB>;
144
+ }) => void;
145
+ reset: () => void;
146
+ };
147
+ declare const useQueryItem: <T>(query: (db: SelectQueryBuilder<DB, "favouriteItem", {}>) => Promise<T>, otherKeys?: readonly EntryKey[], initialData?: () => T) => import("@pinia/colada").UseQueryReturn<T, Error, T>;
148
+ declare const useQueryCard: <T>(query: (db: SelectQueryBuilder<DB, "favouriteCard", {}>) => Promise<T>, otherKeys?: readonly EntryKey[], initialData?: () => T) => import("@pinia/colada").UseQueryReturn<T, Error, T>;
149
+ declare namespace plugin_d_exports {
150
+ export { Archive, Meta, QueryKey$3 as QueryKey, Table$5 as Table, removeByNames, useQuery$4 as useQuery, useRemove$3 as useRemove, useToggleEnable, useUpsert$3 as useUpsert };
151
+ }
152
+ type Meta = PluginManifest;
153
+ interface Table$5 {
154
+ installerName: string;
155
+ loaderName: string;
156
+ /** @description primary key */
157
+ pluginName: string;
158
+ meta: JSONColumnType<Meta>;
159
+ enable: boolean;
160
+ installInput: string;
161
+ displayName: string;
162
+ }
163
+ /** @description Not Blue */
164
+ type Archive = Selectable<Table$5>;
165
+ declare enum QueryKey$3 {
166
+ item = "db:plugin:"
167
+ }
168
+ declare const removeByNames: (keys: Archive["pluginName"][], trx: Kysely$1<DB>) => Promise<void>;
169
+ declare const useUpsert$3: () => {
170
+ upsert: (vars: {
171
+ archives: Archive[];
172
+ trx?: Kysely$1<DB>;
173
+ }) => Promise<void>;
174
+ key: (CommonQueryKey | QueryKey$3)[];
175
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<void, Error, undefined>>;
176
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
177
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
178
+ data: import("vue").ShallowRef<void | undefined>;
179
+ error: import("vue").ShallowRef<Error | null>;
180
+ isLoading: import("vue").ComputedRef<boolean>;
181
+ variables: import("vue").ShallowRef<{
182
+ archives: Archive[];
183
+ trx?: Kysely$1<DB>;
184
+ } | undefined>;
185
+ mutate: (vars: {
186
+ archives: Archive[];
187
+ trx?: Kysely$1<DB>;
188
+ }) => void;
189
+ reset: () => void;
190
+ };
191
+ declare const useRemove$3: () => {
192
+ remove: (vars: {
193
+ keys: Archive["pluginName"][];
194
+ trx?: Kysely$1<DB>;
195
+ }) => Promise<void>;
196
+ key: (CommonQueryKey | QueryKey$3)[];
197
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<void, Error, undefined>>;
198
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
199
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
200
+ data: import("vue").ShallowRef<void | undefined>;
201
+ error: import("vue").ShallowRef<Error | null>;
202
+ isLoading: import("vue").ComputedRef<boolean>;
203
+ variables: import("vue").ShallowRef<{
204
+ keys: Archive["pluginName"][];
205
+ trx?: Kysely$1<DB>;
206
+ } | undefined>;
207
+ mutate: (vars: {
208
+ keys: Archive["pluginName"][];
209
+ trx?: Kysely$1<DB>;
210
+ }) => void;
211
+ reset: () => void;
212
+ };
213
+ declare const useToggleEnable: () => {
214
+ toggle: (vars: {
215
+ keys: Archive["pluginName"][];
216
+ trx?: Kysely$1<DB>;
217
+ }) => Promise<import("kysely").UpdateResult[] | undefined>;
218
+ key: (CommonQueryKey | QueryKey$3)[];
219
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<import("kysely").UpdateResult[] | undefined, Error, undefined>>;
220
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
221
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
222
+ data: import("vue").ShallowRef<import("kysely").UpdateResult[] | undefined>;
223
+ error: import("vue").ShallowRef<Error | null>;
224
+ isLoading: import("vue").ComputedRef<boolean>;
225
+ variables: import("vue").ShallowRef<{
226
+ keys: Archive["pluginName"][];
227
+ trx?: Kysely$1<DB>;
228
+ } | undefined>;
229
+ mutate: (vars: {
230
+ keys: Archive["pluginName"][];
231
+ trx?: Kysely$1<DB>;
232
+ }) => void;
233
+ reset: () => void;
234
+ };
235
+ declare const useQuery$4: <T>(query: (db: SelectQueryBuilder<DB, "plugin", {}>) => Promise<T>, otherKeys?: readonly EntryKey[], initialData?: () => T) => import("@pinia/colada").UseQueryReturn<T, Error, T>;
236
+ declare namespace history_d_exports {
237
+ export { Item$2 as Item, QueryKey$2 as QueryKey, Table$4 as Table, useQuery$3 as useQuery, useRemove$2 as useRemove, useUpsert$2 as useUpsert };
238
+ }
239
+ interface Table$4 {
240
+ /** @description primary key */
241
+ timestamp: number;
242
+ itemKey: string;
243
+ ep: JSONColumnType<UniEpRaw>;
244
+ }
245
+ type Item$2 = Selectable<Table$4>;
246
+ declare enum QueryKey$2 {
247
+ item = "db:history:"
248
+ }
249
+ declare const useUpsert$2: () => {
250
+ upsert: (vars: {
251
+ item: StorableItem;
252
+ trx?: Kysely$1<DB>;
253
+ }) => Promise<void>;
254
+ key: (CommonQueryKey | QueryKey$5 | QueryKey$2)[];
255
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<void, Error, undefined>>;
256
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
257
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
258
+ data: import("vue").ShallowRef<void | undefined>;
259
+ error: import("vue").ShallowRef<Error | null>;
260
+ isLoading: import("vue").ComputedRef<boolean>;
261
+ variables: import("vue").ShallowRef<{
262
+ item: StorableItem;
263
+ trx?: Kysely$1<DB>;
264
+ } | undefined>;
265
+ mutate: (vars: {
266
+ item: StorableItem;
267
+ trx?: Kysely$1<DB>;
268
+ }) => void;
269
+ reset: () => void;
270
+ };
271
+ declare const useRemove$2: () => {
272
+ remove: (vars: {
273
+ keys: Item$2["timestamp"][];
274
+ trx?: Kysely$1<DB>;
275
+ }) => Promise<void>;
276
+ key: (CommonQueryKey | QueryKey$2)[];
277
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<void, Error, undefined>>;
278
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
279
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
280
+ data: import("vue").ShallowRef<void | undefined>;
281
+ error: import("vue").ShallowRef<Error | null>;
282
+ isLoading: import("vue").ComputedRef<boolean>;
283
+ variables: import("vue").ShallowRef<{
284
+ keys: Item$2["timestamp"][];
285
+ trx?: Kysely$1<DB>;
286
+ } | undefined>;
287
+ mutate: (vars: {
288
+ keys: Item$2["timestamp"][];
289
+ trx?: Kysely$1<DB>;
290
+ }) => void;
291
+ reset: () => void;
292
+ };
293
+ declare const useQuery$3: <T>(query: (db: SelectQueryBuilder<DB, "history", {}>) => Promise<T>, otherKeys?: readonly EntryKey[], initialData?: () => T) => import("@pinia/colada").UseQueryReturn<T, Error, T>;
294
+ declare namespace config_d_exports {
295
+ export { ConfigDescription, ConfigRef, Table$3 as Table, useConfig };
296
+ }
297
+ interface Table$3 {
298
+ /** @description config owner, usually plugin name */
299
+ belongTo: string;
300
+ /** @description serialized form structure */
301
+ form: string;
302
+ /** @description serialized config data */
303
+ data: string;
304
+ }
305
+ type ConfigRef<T> = Ref<T> & {
306
+ readonly ready: Promise<void>;
307
+ };
308
+ type ConfigDescription = Record<string, Required<Pick<FormSingleConfigure, 'defaultValue'>> & FormSingleConfigure>;
309
+ declare const useConfig: <T extends ConfigDescription>(belongTo: string, form: T) => ConfigRef<FormResult<T>>;
310
+ //#endregion
311
+ //#region lib/nativeStore/index.d.ts
312
+ interface Table {
313
+ namespace: string;
314
+ key: string;
315
+ value: string;
316
+ }
317
+ declare const useNativeStore: <T extends object>(namespace: string, key: MaybeRefOrGetter<string>, defaultValue: MaybeRefOrGetter<T>) => Ref<T, T>;
318
+ declare namespace recentView_d_exports {
319
+ export { Item$1 as Item, QueryKey$1 as QueryKey, Table$2 as Table, useQuery$2 as useQuery, useRemove$1 as useRemove, useUpsert$1 as useUpsert };
320
+ }
321
+ interface Table$2 {
322
+ /** @description primary key */
323
+ timestamp: number;
324
+ itemKey: string;
325
+ isViewed: boolean;
326
+ }
327
+ type Item$1 = Selectable<Table$2>;
328
+ declare enum QueryKey$1 {
329
+ item = "db:recentView:"
330
+ }
331
+ declare const useUpsert$1: () => {
332
+ upsert: (vars: {
333
+ item: StorableItem;
334
+ trx?: Kysely$1<DB>;
335
+ }) => Promise<void>;
336
+ key: (CommonQueryKey | QueryKey$5 | QueryKey$1)[];
337
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<void, Error, undefined>>;
338
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
339
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
340
+ data: import("vue").ShallowRef<void | undefined>;
341
+ error: import("vue").ShallowRef<Error | null>;
342
+ isLoading: import("vue").ComputedRef<boolean>;
343
+ variables: import("vue").ShallowRef<{
344
+ item: StorableItem;
345
+ trx?: Kysely$1<DB>;
346
+ } | undefined>;
347
+ mutate: (vars: {
348
+ item: StorableItem;
349
+ trx?: Kysely$1<DB>;
350
+ }) => void;
351
+ reset: () => void;
352
+ };
353
+ declare const useRemove$1: () => {
354
+ remove: (vars: {
355
+ items: Item$1["timestamp"][];
356
+ trx?: Kysely$1<DB>;
357
+ }) => Promise<void>;
358
+ key: (CommonQueryKey | QueryKey$1)[];
359
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<void, Error, undefined>>;
360
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
361
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
362
+ data: import("vue").ShallowRef<void | undefined>;
363
+ error: import("vue").ShallowRef<Error | null>;
364
+ isLoading: import("vue").ComputedRef<boolean>;
365
+ variables: import("vue").ShallowRef<{
366
+ items: Item$1["timestamp"][];
367
+ trx?: Kysely$1<DB>;
368
+ } | undefined>;
369
+ mutate: (vars: {
370
+ items: Item$1["timestamp"][];
371
+ trx?: Kysely$1<DB>;
372
+ }) => void;
373
+ reset: () => void;
374
+ };
375
+ declare const useQuery$2: <T>(query: (db: SelectQueryBuilder<DB, "recentView", {}>) => Promise<T>, otherKeys?: readonly EntryKey[], initialData?: () => T) => import("@pinia/colada").UseQueryReturn<T, Error, T>;
376
+ declare namespace subscribe_d_exports {
377
+ export { AuthorItem, AuthorTable, EpItem, EpTable, Item, Key, Key_, QueryKey, Table$1 as Table, key, useQuery$1 as useQuery, useRemove, useUpsert };
378
+ }
379
+ declare const key: SourcedValue<[plugin: string, label: string]>;
380
+ type Key_ = SourcedKeyType<typeof key>;
381
+ type Key = Exclude<Key_, string>;
382
+ interface AuthorTable {
383
+ author: JSONColumnType<UniItemAuthor>;
384
+ itemKey: null;
385
+ type: 'author';
386
+ /** @description primary key */
387
+ key: string;
388
+ plugin: string;
389
+ }
390
+ type AuthorItem = Selectable<AuthorTable>;
391
+ interface EpTable {
392
+ author: null;
393
+ itemKey: string;
394
+ type: 'ep';
395
+ /** @description primary key */
396
+ key: string;
397
+ plugin: string;
398
+ }
399
+ type EpItem = Selectable<EpTable>;
400
+ type Table$1 = AuthorTable | EpTable;
401
+ type Item = AuthorItem | EpItem;
402
+ declare enum QueryKey {
403
+ item = "db:subscribe:"
404
+ }
405
+ declare const useUpsert: () => {
406
+ upsert: (vars: {
407
+ items: Item[];
408
+ trx?: Kysely$1<DB>;
409
+ }) => Promise<void>;
410
+ key: (CommonQueryKey | QueryKey)[];
411
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<void, Error, undefined>>;
412
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
413
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
414
+ data: import("vue").ShallowRef<void | undefined>;
415
+ error: import("vue").ShallowRef<Error | null>;
416
+ isLoading: import("vue").ComputedRef<boolean>;
417
+ variables: import("vue").ShallowRef<{
418
+ items: Item[];
419
+ trx?: Kysely$1<DB>;
420
+ } | undefined>;
421
+ mutate: (vars: {
422
+ items: Item[];
423
+ trx?: Kysely$1<DB>;
424
+ }) => void;
425
+ reset: () => void;
426
+ };
427
+ declare const useRemove: () => {
428
+ remove: (vars: {
429
+ keys: Item["key"][];
430
+ trx?: Kysely$1<DB>;
431
+ }) => Promise<void>;
432
+ key: (CommonQueryKey | QueryKey)[];
433
+ state: import("vue").ComputedRef<import("@pinia/colada").DataState<void, Error, undefined>>;
434
+ status: import("vue").ShallowRef<import("@pinia/colada").DataStateStatus>;
435
+ asyncStatus: import("vue").ShallowRef<import("@pinia/colada").AsyncStatus>;
436
+ data: import("vue").ShallowRef<void | undefined>;
437
+ error: import("vue").ShallowRef<Error | null>;
438
+ isLoading: import("vue").ComputedRef<boolean>;
439
+ variables: import("vue").ShallowRef<{
440
+ keys: Item["key"][];
441
+ trx?: Kysely$1<DB>;
442
+ } | undefined>;
443
+ mutate: (vars: {
444
+ keys: Item["key"][];
445
+ trx?: Kysely$1<DB>;
446
+ }) => void;
447
+ reset: () => void;
448
+ };
449
+ declare const useQuery$1: <T>(query: (db: SelectQueryBuilder<DB, "subscribe", {}>) => Promise<T>, otherKeys?: readonly EntryKey[], initialData?: () => T) => import("@pinia/colada").UseQueryReturn<T, Error, T>;
450
+ //#endregion
451
+ //#region lib/index.d.ts
452
+ interface DB {
453
+ itemStore: Table$6;
454
+ favouriteCard: CardTable;
455
+ favouriteItem: ItemTable;
456
+ history: Table$4;
457
+ recentView: Table$2;
458
+ subscribe: Table$1;
459
+ plugin: Table$5;
460
+ nativeStore: Table;
461
+ config: Table$3;
462
+ }
463
+ declare const isTauriRuntime: typeof isTauri;
464
+ declare const db: Kysely$1<DB>;
465
+ //#endregion
466
+ export { config_d_exports as ConfigDB, DB, utils_d_exports as DBUtils, favourite_d_exports as FavouriteDB, history_d_exports as HistoryDB, type InsertObject, itemStore_d_exports as ItemStoreDB, type Kysely, plugin_d_exports as PluginArchiveDB, recentView_d_exports as RecentDB, subscribe_d_exports as SubscribeDB, Table, db, isTauriRuntime, useConfig, useNativeStore };
467
+ //# sourceMappingURL=index.d.mts.map