workadventure/front/src/Stores/UserWokaPictureStore.ts
2021-12-04 16:29:28 +01:00

9 lines
236 B
TypeScript

import { writable, Writable } from "svelte/store";
/**
* A store that contains the player avatar picture
*/
export class UserWokaPictureStore {
constructor(public picture: Writable<string | undefined> = writable(undefined)) {}
}