workadventure/front/src/Stores/UserWokaPictureStore.ts
2021-12-04 15:36:11 +01:00

8 lines
245 B
TypeScript

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