workadventure/front/src/Stores/MyCameraStoreVisibility.ts
2022-01-27 16:34:58 +01:00

9 lines
239 B
TypeScript

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);