narraleaf-react 0.16.0 → 0.17.0
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/LICENSE +373 -373
- package/README.md +165 -165
- package/dist/game/nlcore/common/transition.d.ts +3 -1
- package/dist/game/nlcore/elements/character/textEvent.d.ts +8 -0
- package/dist/game/nlcore/elements/transition/transitions/image/darkness.d.ts +6 -2
- package/dist/game/nlcore/elements/transition/transitions/image/push.d.ts +13 -4
- package/dist/game/player/elements/preload/preloadPlan.d.ts +34 -0
- package/dist/game/player/elements/say/UIDialog.d.ts +7 -0
- package/dist/game/player/elements/say/textEventEffect.d.ts +14 -0
- package/dist/game/player/gameState.d.ts +8 -0
- package/dist/game/player/lib/AudioManager.d.ts +12 -0
- package/dist/game/player/lib/ImageCacheManager.d.ts +28 -1
- package/dist/main.js +37 -37
- package/dist/util/data.d.ts +4 -0
- package/package.json +1 -1
package/dist/util/data.d.ts
CHANGED
|
@@ -252,6 +252,10 @@ export declare class TaskPool {
|
|
|
252
252
|
private tasks;
|
|
253
253
|
constructor(concurrency: number, delay: number);
|
|
254
254
|
addTask(task: () => Promise<void>): void;
|
|
255
|
+
/**
|
|
256
|
+
* Number of tasks still queued (i.e. not yet handed to a running batch).
|
|
257
|
+
*/
|
|
258
|
+
get size(): number;
|
|
255
259
|
start(): Promise<void>;
|
|
256
260
|
}
|
|
257
261
|
export type StringKeyOf<T> = Extract<keyof T, string>;
|