workadventure/front/src/Stores/MyCameraStoreVisibility.ts

9 lines
239 B
TypeScript
Raw Normal View History

2022-01-05 10:27:40 +01:00
import { writable } from "svelte/store";
/**
* A store that contains whether my camera & actions is shown or not.
* Typically, the overlay is hidden when entering Jitsi meet.
*/
export const myCameraVisibilityStore = writable(false);