workadventure/front/src/Stores/UserWokaPictureStore.ts

8 lines
245 B
TypeScript
Raw Normal View History

2021-11-30 19:10:35 +01:00
import { writable, Writable } from "svelte/store";
2021-11-26 22:16:01 +01:00
/**
2021-11-30 19:10:35 +01:00
* A store that contains the player avatar picture
2021-11-26 22:16:01 +01:00
*/
2021-11-30 19:10:35 +01:00
export class UserWokaPictureStore {
constructor(public picture: Writable<HTMLImageElement | undefined> = writable(undefined)) {}
}