@infernus/core 0.9.1 → 0.9.3
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/bundle.d.ts +3 -2
- package/dist/bundle.js +1 -1
- package/dist/bundle.mjs +1 -1
- package/package.json +3 -3
package/dist/bundle.d.ts
CHANGED
|
@@ -1207,6 +1207,7 @@ interface ITextDraw<P extends Player> {
|
|
|
1207
1207
|
text: string;
|
|
1208
1208
|
}
|
|
1209
1209
|
interface IDialogFuncQueue {
|
|
1210
|
+
showId: number;
|
|
1210
1211
|
resolve: (value: IDialogResRaw | PromiseLike<IDialogResRaw>) => void;
|
|
1211
1212
|
reject: (reason: string) => void;
|
|
1212
1213
|
}
|
|
@@ -1357,8 +1358,8 @@ declare class I18n {
|
|
|
1357
1358
|
|
|
1358
1359
|
declare class Dialog<T extends Player> {
|
|
1359
1360
|
private id;
|
|
1360
|
-
private static
|
|
1361
|
-
private static
|
|
1361
|
+
private static showingIds;
|
|
1362
|
+
private static max_dialogId;
|
|
1362
1363
|
private dialog;
|
|
1363
1364
|
static waitingQueue: Map<number, IDialogFuncQueue>;
|
|
1364
1365
|
constructor(dialog?: IDialog);
|