@glissandoo/lib 1.0.34 → 1.0.37
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/functions/event.d.ts +2 -4
- package/package.json +1 -1
package/functions/event.d.ts
CHANGED
|
@@ -101,12 +101,10 @@ export declare namespace EventoFbFunctionsTypes {
|
|
|
101
101
|
export enum UndoAction {
|
|
102
102
|
Undo = "undo"
|
|
103
103
|
}
|
|
104
|
-
export type RollcallAction = EventPlayerStatus | UndoAction;
|
|
104
|
+
export type RollcallAction = EventPlayerStatus | UndoAction | null;
|
|
105
105
|
export interface SetRollCallParams {
|
|
106
106
|
eventId: string;
|
|
107
|
-
list:
|
|
108
|
-
[userId: string]: RollcallAction;
|
|
109
|
-
};
|
|
107
|
+
list: Record<string, RollcallAction>;
|
|
110
108
|
}
|
|
111
109
|
export type SetRollCallResult = void;
|
|
112
110
|
export {};
|