7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
|
import type { Readable } from "svelte/store";
|
||
|
|
||
|
/**
|
||
|
* A store that contains the player/companion avatar picture
|
||
|
*/
|
||
|
export type PictureStore = Readable<string | undefined>;
|