@mostfeatured/dbi 0.0.67 → 0.0.68
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.
- package/dist/DBI.d.ts +181 -181
- package/dist/DBI.js +369 -369
- package/dist/Events.d.ts +47 -47
- package/dist/index.d.ts +16 -16
- package/dist/index.js +29 -29
- package/dist/methods/hookEventListeners.js +97 -97
- package/dist/methods/hookInteractionListeners.js +129 -129
- package/dist/methods/publishInteractions.d.ts +8 -8
- package/dist/methods/publishInteractions.js +241 -241
- package/dist/methods/publishInteractions.js.map +1 -1
- package/dist/types/CustomEvent.js +19 -19
- package/dist/types/Event.d.ts +265 -265
- package/dist/types/Event.js +24 -24
- package/dist/types/Interaction.d.ts +49 -49
- package/dist/types/Interaction.js +26 -26
- package/dist/utils/recursiveImport.d.ts +5 -5
- package/dist/utils/recursiveImport.js +27 -27
- package/package.json +1 -1
- package/src/methods/publishInteractions.ts +2 -2
package/dist/DBI.d.ts
CHANGED
|
@@ -1,182 +1,182 @@
|
|
|
1
|
-
import Discord from "discord.js";
|
|
2
|
-
import { DBIChatInput, TDBIChatInputOmitted } from "./types/ChatInput/ChatInput";
|
|
3
|
-
import { DBIChatInputOptions } from "./types/ChatInput/ChatInputOptions";
|
|
4
|
-
import { ClientEvents, DBIEvent, TDBIEventOmitted } from "./types/Event";
|
|
5
|
-
import { Events } from "./Events";
|
|
6
|
-
import { DBILocale, TDBILocaleConstructor, TDBILocaleString } from "./types/Locale";
|
|
7
|
-
import { DBIButton, TDBIButtonOmitted } from "./types/Button";
|
|
8
|
-
import { DBISelectMenu, TDBISelectMenuOmitted } from "./types/SelectMenu";
|
|
9
|
-
import { DBIMessageContextMenu, TDBIMessageContextMenuOmitted } from "./types/MessageContextMenu";
|
|
10
|
-
import { DBIUserContextMenu, TDBIUserContextMenuOmitted } from "./types/UserContextMenu";
|
|
11
|
-
import { DBIModal, TDBIModalOmitted } from "./types/Modal";
|
|
12
|
-
import * as Sharding from "discord-hybrid-sharding";
|
|
13
|
-
import { DBIInteractionLocale, TDBIInteractionLocaleOmitted } from "./types/InteractionLocale";
|
|
14
|
-
import { TDBIInteractions } from "./types/Interaction";
|
|
15
|
-
import { NamespaceData, NamespaceEnums } from "../generated/namespaceData";
|
|
16
|
-
import { DBICustomEvent, TDBICustomEventOmitted } from "./types/CustomEvent";
|
|
17
|
-
export interface DBIStore {
|
|
18
|
-
get(key: string, defaultValue?: any): Promise<any>;
|
|
19
|
-
set(key: string, value: any): Promise<void>;
|
|
20
|
-
delete(key: string): Promise<void>;
|
|
21
|
-
has(key: string): Promise<boolean>;
|
|
22
|
-
}
|
|
23
|
-
export declare type DBIClientData<TNamespace extends NamespaceEnums> = {
|
|
24
|
-
namespace: NamespaceData[TNamespace]["clientNamespaces"];
|
|
25
|
-
token: string;
|
|
26
|
-
options: Discord.Options;
|
|
27
|
-
client: Discord.Client<true>;
|
|
28
|
-
};
|
|
29
|
-
export interface DBIConfig {
|
|
30
|
-
discord: {
|
|
31
|
-
namespace: string;
|
|
32
|
-
token: string;
|
|
33
|
-
options: Discord.ClientOptions;
|
|
34
|
-
}[];
|
|
35
|
-
defaults: {
|
|
36
|
-
locale: TDBILocaleString;
|
|
37
|
-
directMessages: boolean;
|
|
38
|
-
defaultMemberPermissions: Discord.PermissionsString[];
|
|
39
|
-
};
|
|
40
|
-
sharding: "hybrid" | "default" | "off";
|
|
41
|
-
/**
|
|
42
|
-
* Persist store. (Default to MemoryStore thats not persis tho.)
|
|
43
|
-
*/
|
|
44
|
-
store: DBIStore;
|
|
45
|
-
references: {
|
|
46
|
-
autoClear?: {
|
|
47
|
-
check: number;
|
|
48
|
-
ttl: number;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
strict: boolean;
|
|
52
|
-
}
|
|
53
|
-
export interface DBIConfigConstructor {
|
|
54
|
-
discord: {
|
|
55
|
-
token: string;
|
|
56
|
-
options: Discord.ClientOptions;
|
|
57
|
-
} | {
|
|
58
|
-
namespace: string;
|
|
59
|
-
token: string;
|
|
60
|
-
options: Discord.ClientOptions;
|
|
61
|
-
}[];
|
|
62
|
-
defaults?: {
|
|
63
|
-
locale?: TDBILocaleString;
|
|
64
|
-
directMessages?: boolean;
|
|
65
|
-
defaultMemberPermissions?: Discord.PermissionsString[];
|
|
66
|
-
};
|
|
67
|
-
sharding?: "hybrid" | "default" | "off";
|
|
68
|
-
/**
|
|
69
|
-
* Persist store. (Default to MemoryStore thats not persis tho.)
|
|
70
|
-
*/
|
|
71
|
-
store?: DBIStore;
|
|
72
|
-
references?: {
|
|
73
|
-
autoClear?: {
|
|
74
|
-
check: number;
|
|
75
|
-
ttl: number;
|
|
76
|
-
};
|
|
77
|
-
};
|
|
78
|
-
data?: {
|
|
79
|
-
other?: Record<string, any>;
|
|
80
|
-
refs?: Map<string, {
|
|
81
|
-
at: number;
|
|
82
|
-
value: any;
|
|
83
|
-
ttl?: number;
|
|
84
|
-
}>;
|
|
85
|
-
};
|
|
86
|
-
strict?: boolean;
|
|
87
|
-
}
|
|
88
|
-
export interface DBIRegisterAPI<TNamespace extends NamespaceEnums> {
|
|
89
|
-
ChatInput(cfg: TDBIChatInputOmitted<TNamespace>): DBIChatInput<TNamespace>;
|
|
90
|
-
ChatInputOptions: DBIChatInputOptions<TNamespace>;
|
|
91
|
-
Event(cfg: TDBIEventOmitted<TNamespace>): DBIEvent<TNamespace>;
|
|
92
|
-
Locale(cfg: TDBILocaleConstructor<TNamespace>): DBILocale<TNamespace>;
|
|
93
|
-
Button(cfg: TDBIButtonOmitted<TNamespace>): DBIButton<TNamespace>;
|
|
94
|
-
SelectMenu(cfg: TDBISelectMenuOmitted<TNamespace>): DBISelectMenu<TNamespace>;
|
|
95
|
-
MessageContextMenu(cfg: TDBIMessageContextMenuOmitted<TNamespace>): DBIMessageContextMenu<TNamespace>;
|
|
96
|
-
UserContextMenu(cfg: TDBIUserContextMenuOmitted<TNamespace>): DBIUserContextMenu<TNamespace>;
|
|
97
|
-
InteractionLocale(cfg: TDBIInteractionLocaleOmitted): DBIInteractionLocale;
|
|
98
|
-
Modal(cfg: TDBIModalOmitted<TNamespace>): DBIModal<TNamespace>;
|
|
99
|
-
CustomEvent<T extends keyof NamespaceData[TNamespace]["customEvents"]>(cfg: TDBICustomEventOmitted<TNamespace, T>): DBICustomEvent<TNamespace, T>;
|
|
100
|
-
onUnload(cb: () => Promise<any> | any): any;
|
|
101
|
-
}
|
|
102
|
-
export declare class DBI<TNamespace extends NamespaceEnums, TOtherData = Record<string, any>> {
|
|
103
|
-
namespace: TNamespace;
|
|
104
|
-
config: DBIConfig;
|
|
105
|
-
data: {
|
|
106
|
-
interactions: Discord.Collection<string, TDBIInteractions<TNamespace>>;
|
|
107
|
-
events: Discord.Collection<string, DBIEvent<TNamespace>>;
|
|
108
|
-
locales: Discord.Collection<string, DBILocale<TNamespace>>;
|
|
109
|
-
interactionLocales: Discord.Collection<string, DBIInteractionLocale>;
|
|
110
|
-
other: TOtherData;
|
|
111
|
-
eventMap: Record<string, string[] | {
|
|
112
|
-
[k: string]: string;
|
|
113
|
-
}>;
|
|
114
|
-
customEventNames: Set<string>;
|
|
115
|
-
unloaders: Set<() => void>;
|
|
116
|
-
registers: Set<(...args: any[]) => any>;
|
|
117
|
-
registerUnloaders: Set<(...args: any[]) => any>;
|
|
118
|
-
refs: Map<string, {
|
|
119
|
-
at: number;
|
|
120
|
-
value: any;
|
|
121
|
-
ttl?: number;
|
|
122
|
-
}>;
|
|
123
|
-
clients: DBIClientData<TNamespace>[] & {
|
|
124
|
-
next(key?: string): DBIClientData<TNamespace>;
|
|
125
|
-
random(): DBIClientData<TNamespace>;
|
|
126
|
-
random(size: number): DBIClientData<TNamespace>[];
|
|
127
|
-
first(): DBIClientData<TNamespace>;
|
|
128
|
-
get(namespace: NamespaceData[TNamespace]["clientNamespaces"]): DBIClientData<TNamespace>;
|
|
129
|
-
indexes: Record<string, number>;
|
|
130
|
-
};
|
|
131
|
-
};
|
|
132
|
-
events: Events<TNamespace>;
|
|
133
|
-
cluster?: Sharding.Client;
|
|
134
|
-
private _loaded;
|
|
135
|
-
private _hooked;
|
|
136
|
-
constructor(namespace: TNamespace, config: DBIConfigConstructor);
|
|
137
|
-
private _hookListeners;
|
|
138
|
-
private _unhookListeners;
|
|
139
|
-
private _unregisterAll;
|
|
140
|
-
private _registerAll;
|
|
141
|
-
/**
|
|
142
|
-
* this.data.interactions.get(name)
|
|
143
|
-
*/
|
|
144
|
-
interaction<TInteractionName extends keyof NamespaceData[TNamespace]["interactionMapping"]>(name: TInteractionName): NamespaceData[TNamespace]["interactionMapping"][TInteractionName];
|
|
145
|
-
emit<TEventName extends keyof (NamespaceData[TNamespace]["customEvents"] & ClientEvents)>(name: TEventName, args: (NamespaceData[TNamespace]["customEvents"] & ClientEvents)[TEventName]): void;
|
|
146
|
-
/**
|
|
147
|
-
* @deprecated
|
|
148
|
-
*/
|
|
149
|
-
get client(): Discord.Client<true>;
|
|
150
|
-
/**
|
|
151
|
-
* this.data.events.get(name)
|
|
152
|
-
*/
|
|
153
|
-
event<TEventName extends NamespaceData[TNamespace]["eventNames"]>(name: TEventName): DBIEvent<TNamespace>;
|
|
154
|
-
/**
|
|
155
|
-
* this.data.locales.get(name)
|
|
156
|
-
*/
|
|
157
|
-
locale<TLocaleName extends NamespaceData[TNamespace]["localeNames"]>(name: TLocaleName): DBILocale<TNamespace>;
|
|
158
|
-
/**
|
|
159
|
-
* Shorthands for modifying `dbi.data.other`
|
|
160
|
-
*/
|
|
161
|
-
get<K extends keyof TOtherData>(k: K, defaultValue?: TOtherData[K]): TOtherData[K];
|
|
162
|
-
/**
|
|
163
|
-
* Shorthands for modifying `dbi.data.other`
|
|
164
|
-
*/
|
|
165
|
-
set<K extends keyof TOtherData>(k: K, v: TOtherData[K]): any;
|
|
166
|
-
/**
|
|
167
|
-
* Shorthands for modifying `dbi.data.other`
|
|
168
|
-
*/
|
|
169
|
-
has(k: string): boolean;
|
|
170
|
-
/**
|
|
171
|
-
* Shorthands for modifying `dbi.data.other`
|
|
172
|
-
*/
|
|
173
|
-
delete(k: string): boolean;
|
|
174
|
-
login(): Promise<any>;
|
|
175
|
-
register(cb: (api: DBIRegisterAPI<TNamespace>) => void): Promise<any>;
|
|
176
|
-
load(): Promise<boolean>;
|
|
177
|
-
unload(): Promise<boolean>;
|
|
178
|
-
get loaded(): boolean;
|
|
179
|
-
publish(type: "Global", clear?: boolean): Promise<any>;
|
|
180
|
-
publish(type: "Guild", guildId: string, clear?: boolean): Promise<any>;
|
|
181
|
-
}
|
|
1
|
+
import Discord from "discord.js";
|
|
2
|
+
import { DBIChatInput, TDBIChatInputOmitted } from "./types/ChatInput/ChatInput";
|
|
3
|
+
import { DBIChatInputOptions } from "./types/ChatInput/ChatInputOptions";
|
|
4
|
+
import { ClientEvents, DBIEvent, TDBIEventOmitted } from "./types/Event";
|
|
5
|
+
import { Events } from "./Events";
|
|
6
|
+
import { DBILocale, TDBILocaleConstructor, TDBILocaleString } from "./types/Locale";
|
|
7
|
+
import { DBIButton, TDBIButtonOmitted } from "./types/Button";
|
|
8
|
+
import { DBISelectMenu, TDBISelectMenuOmitted } from "./types/SelectMenu";
|
|
9
|
+
import { DBIMessageContextMenu, TDBIMessageContextMenuOmitted } from "./types/MessageContextMenu";
|
|
10
|
+
import { DBIUserContextMenu, TDBIUserContextMenuOmitted } from "./types/UserContextMenu";
|
|
11
|
+
import { DBIModal, TDBIModalOmitted } from "./types/Modal";
|
|
12
|
+
import * as Sharding from "discord-hybrid-sharding";
|
|
13
|
+
import { DBIInteractionLocale, TDBIInteractionLocaleOmitted } from "./types/InteractionLocale";
|
|
14
|
+
import { TDBIInteractions } from "./types/Interaction";
|
|
15
|
+
import { NamespaceData, NamespaceEnums } from "../generated/namespaceData";
|
|
16
|
+
import { DBICustomEvent, TDBICustomEventOmitted } from "./types/CustomEvent";
|
|
17
|
+
export interface DBIStore {
|
|
18
|
+
get(key: string, defaultValue?: any): Promise<any>;
|
|
19
|
+
set(key: string, value: any): Promise<void>;
|
|
20
|
+
delete(key: string): Promise<void>;
|
|
21
|
+
has(key: string): Promise<boolean>;
|
|
22
|
+
}
|
|
23
|
+
export declare type DBIClientData<TNamespace extends NamespaceEnums> = {
|
|
24
|
+
namespace: NamespaceData[TNamespace]["clientNamespaces"];
|
|
25
|
+
token: string;
|
|
26
|
+
options: Discord.Options;
|
|
27
|
+
client: Discord.Client<true>;
|
|
28
|
+
};
|
|
29
|
+
export interface DBIConfig {
|
|
30
|
+
discord: {
|
|
31
|
+
namespace: string;
|
|
32
|
+
token: string;
|
|
33
|
+
options: Discord.ClientOptions;
|
|
34
|
+
}[];
|
|
35
|
+
defaults: {
|
|
36
|
+
locale: TDBILocaleString;
|
|
37
|
+
directMessages: boolean;
|
|
38
|
+
defaultMemberPermissions: Discord.PermissionsString[];
|
|
39
|
+
};
|
|
40
|
+
sharding: "hybrid" | "default" | "off";
|
|
41
|
+
/**
|
|
42
|
+
* Persist store. (Default to MemoryStore thats not persis tho.)
|
|
43
|
+
*/
|
|
44
|
+
store: DBIStore;
|
|
45
|
+
references: {
|
|
46
|
+
autoClear?: {
|
|
47
|
+
check: number;
|
|
48
|
+
ttl: number;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
strict: boolean;
|
|
52
|
+
}
|
|
53
|
+
export interface DBIConfigConstructor {
|
|
54
|
+
discord: {
|
|
55
|
+
token: string;
|
|
56
|
+
options: Discord.ClientOptions;
|
|
57
|
+
} | {
|
|
58
|
+
namespace: string;
|
|
59
|
+
token: string;
|
|
60
|
+
options: Discord.ClientOptions;
|
|
61
|
+
}[];
|
|
62
|
+
defaults?: {
|
|
63
|
+
locale?: TDBILocaleString;
|
|
64
|
+
directMessages?: boolean;
|
|
65
|
+
defaultMemberPermissions?: Discord.PermissionsString[];
|
|
66
|
+
};
|
|
67
|
+
sharding?: "hybrid" | "default" | "off";
|
|
68
|
+
/**
|
|
69
|
+
* Persist store. (Default to MemoryStore thats not persis tho.)
|
|
70
|
+
*/
|
|
71
|
+
store?: DBIStore;
|
|
72
|
+
references?: {
|
|
73
|
+
autoClear?: {
|
|
74
|
+
check: number;
|
|
75
|
+
ttl: number;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
data?: {
|
|
79
|
+
other?: Record<string, any>;
|
|
80
|
+
refs?: Map<string, {
|
|
81
|
+
at: number;
|
|
82
|
+
value: any;
|
|
83
|
+
ttl?: number;
|
|
84
|
+
}>;
|
|
85
|
+
};
|
|
86
|
+
strict?: boolean;
|
|
87
|
+
}
|
|
88
|
+
export interface DBIRegisterAPI<TNamespace extends NamespaceEnums> {
|
|
89
|
+
ChatInput(cfg: TDBIChatInputOmitted<TNamespace>): DBIChatInput<TNamespace>;
|
|
90
|
+
ChatInputOptions: DBIChatInputOptions<TNamespace>;
|
|
91
|
+
Event(cfg: TDBIEventOmitted<TNamespace>): DBIEvent<TNamespace>;
|
|
92
|
+
Locale(cfg: TDBILocaleConstructor<TNamespace>): DBILocale<TNamespace>;
|
|
93
|
+
Button(cfg: TDBIButtonOmitted<TNamespace>): DBIButton<TNamespace>;
|
|
94
|
+
SelectMenu(cfg: TDBISelectMenuOmitted<TNamespace>): DBISelectMenu<TNamespace>;
|
|
95
|
+
MessageContextMenu(cfg: TDBIMessageContextMenuOmitted<TNamespace>): DBIMessageContextMenu<TNamespace>;
|
|
96
|
+
UserContextMenu(cfg: TDBIUserContextMenuOmitted<TNamespace>): DBIUserContextMenu<TNamespace>;
|
|
97
|
+
InteractionLocale(cfg: TDBIInteractionLocaleOmitted): DBIInteractionLocale;
|
|
98
|
+
Modal(cfg: TDBIModalOmitted<TNamespace>): DBIModal<TNamespace>;
|
|
99
|
+
CustomEvent<T extends keyof NamespaceData[TNamespace]["customEvents"]>(cfg: TDBICustomEventOmitted<TNamespace, T>): DBICustomEvent<TNamespace, T>;
|
|
100
|
+
onUnload(cb: () => Promise<any> | any): any;
|
|
101
|
+
}
|
|
102
|
+
export declare class DBI<TNamespace extends NamespaceEnums, TOtherData = Record<string, any>> {
|
|
103
|
+
namespace: TNamespace;
|
|
104
|
+
config: DBIConfig;
|
|
105
|
+
data: {
|
|
106
|
+
interactions: Discord.Collection<string, TDBIInteractions<TNamespace>>;
|
|
107
|
+
events: Discord.Collection<string, DBIEvent<TNamespace>>;
|
|
108
|
+
locales: Discord.Collection<string, DBILocale<TNamespace>>;
|
|
109
|
+
interactionLocales: Discord.Collection<string, DBIInteractionLocale>;
|
|
110
|
+
other: TOtherData;
|
|
111
|
+
eventMap: Record<string, string[] | {
|
|
112
|
+
[k: string]: string;
|
|
113
|
+
}>;
|
|
114
|
+
customEventNames: Set<string>;
|
|
115
|
+
unloaders: Set<() => void>;
|
|
116
|
+
registers: Set<(...args: any[]) => any>;
|
|
117
|
+
registerUnloaders: Set<(...args: any[]) => any>;
|
|
118
|
+
refs: Map<string, {
|
|
119
|
+
at: number;
|
|
120
|
+
value: any;
|
|
121
|
+
ttl?: number;
|
|
122
|
+
}>;
|
|
123
|
+
clients: DBIClientData<TNamespace>[] & {
|
|
124
|
+
next(key?: string): DBIClientData<TNamespace>;
|
|
125
|
+
random(): DBIClientData<TNamespace>;
|
|
126
|
+
random(size: number): DBIClientData<TNamespace>[];
|
|
127
|
+
first(): DBIClientData<TNamespace>;
|
|
128
|
+
get(namespace: NamespaceData[TNamespace]["clientNamespaces"]): DBIClientData<TNamespace>;
|
|
129
|
+
indexes: Record<string, number>;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
events: Events<TNamespace>;
|
|
133
|
+
cluster?: Sharding.Client;
|
|
134
|
+
private _loaded;
|
|
135
|
+
private _hooked;
|
|
136
|
+
constructor(namespace: TNamespace, config: DBIConfigConstructor);
|
|
137
|
+
private _hookListeners;
|
|
138
|
+
private _unhookListeners;
|
|
139
|
+
private _unregisterAll;
|
|
140
|
+
private _registerAll;
|
|
141
|
+
/**
|
|
142
|
+
* this.data.interactions.get(name)
|
|
143
|
+
*/
|
|
144
|
+
interaction<TInteractionName extends keyof NamespaceData[TNamespace]["interactionMapping"]>(name: TInteractionName): NamespaceData[TNamespace]["interactionMapping"][TInteractionName];
|
|
145
|
+
emit<TEventName extends keyof (NamespaceData[TNamespace]["customEvents"] & ClientEvents)>(name: TEventName, args: (NamespaceData[TNamespace]["customEvents"] & ClientEvents)[TEventName]): void;
|
|
146
|
+
/**
|
|
147
|
+
* @deprecated
|
|
148
|
+
*/
|
|
149
|
+
get client(): Discord.Client<true>;
|
|
150
|
+
/**
|
|
151
|
+
* this.data.events.get(name)
|
|
152
|
+
*/
|
|
153
|
+
event<TEventName extends NamespaceData[TNamespace]["eventNames"]>(name: TEventName): DBIEvent<TNamespace>;
|
|
154
|
+
/**
|
|
155
|
+
* this.data.locales.get(name)
|
|
156
|
+
*/
|
|
157
|
+
locale<TLocaleName extends NamespaceData[TNamespace]["localeNames"]>(name: TLocaleName): DBILocale<TNamespace>;
|
|
158
|
+
/**
|
|
159
|
+
* Shorthands for modifying `dbi.data.other`
|
|
160
|
+
*/
|
|
161
|
+
get<K extends keyof TOtherData>(k: K, defaultValue?: TOtherData[K]): TOtherData[K];
|
|
162
|
+
/**
|
|
163
|
+
* Shorthands for modifying `dbi.data.other`
|
|
164
|
+
*/
|
|
165
|
+
set<K extends keyof TOtherData>(k: K, v: TOtherData[K]): any;
|
|
166
|
+
/**
|
|
167
|
+
* Shorthands for modifying `dbi.data.other`
|
|
168
|
+
*/
|
|
169
|
+
has(k: string): boolean;
|
|
170
|
+
/**
|
|
171
|
+
* Shorthands for modifying `dbi.data.other`
|
|
172
|
+
*/
|
|
173
|
+
delete(k: string): boolean;
|
|
174
|
+
login(): Promise<any>;
|
|
175
|
+
register(cb: (api: DBIRegisterAPI<TNamespace>) => void): Promise<any>;
|
|
176
|
+
load(): Promise<boolean>;
|
|
177
|
+
unload(): Promise<boolean>;
|
|
178
|
+
get loaded(): boolean;
|
|
179
|
+
publish(type: "Global", clear?: boolean): Promise<any>;
|
|
180
|
+
publish(type: "Guild", guildId: string, clear?: boolean): Promise<any>;
|
|
181
|
+
}
|
|
182
182
|
//# sourceMappingURL=DBI.d.ts.map
|