workadventure/front/src/Stores/StartLayerNamesStore.ts
2022-02-09 13:03:14 +01:00

7 lines
175 B
TypeScript

import { Readable, writable } from "svelte/store";
/**
* A store that contains the map starting layers names
*/
export const startLayerNamesStore = writable<string[]>([]);