mirror of
https://github.com/ente-io/ente.git
synced 2025-08-07 23:18:10 +00:00
More state
This commit is contained in:
parent
816d74a5e6
commit
44d66da742
@ -59,19 +59,31 @@ class MLState {
|
||||
comlinkWorker: Promise<ComlinkWorker<typeof MLWorker>> | undefined;
|
||||
|
||||
/**
|
||||
* Subscriptions to {@link MLStatus}.
|
||||
* Subscriptions to {@link MLStatus} updates.
|
||||
*
|
||||
* See {@link mlStatusSubscribe}.
|
||||
*/
|
||||
mlStatusListeners: (() => void)[] = [];
|
||||
|
||||
/**
|
||||
* Snapshot of {@link MLStatus}.
|
||||
*
|
||||
* See {@link mlStatusSnapshot}.
|
||||
* Snapshot of the {@link MLStatus} returned by the {@link mlStatusSnapshot}
|
||||
* function.
|
||||
*/
|
||||
mlStatusSnapshot: MLStatus | undefined;
|
||||
|
||||
/**
|
||||
* Subscriptions to updates to the list of {@link Person}s we know about.
|
||||
*
|
||||
* See {@link peopleSubscribe}.
|
||||
*/
|
||||
peopleListeners: (() => void)[] = [];
|
||||
|
||||
/**
|
||||
* Snapshot of the {@link Person}s returned by the {@link peopleSnapshot}
|
||||
* function.
|
||||
*/
|
||||
peopleSnapshot: Person[] | undefined;
|
||||
|
||||
/**
|
||||
* In flight face crop regeneration promises indexed by the IDs of the files
|
||||
* whose faces we are regenerating.
|
||||
|
Loading…
x
Reference in New Issue
Block a user