workadventure/front/src/Stores/StartLayerNamesStore.ts

7 lines
175 B
TypeScript
Raw Normal View History

2022-02-09 13:03:14 +01:00
import { Readable, writable } from "svelte/store";
/**
* A store that contains the map starting layers names
*/
export const startLayerNamesStore = writable<string[]>([]);