6 lines
170 B
TypeScript
6 lines
170 B
TypeScript
import { derived, writable, Writable } from "svelte/store";
|
|
|
|
export const customCharacterSceneVisibleStore = writable(false);
|
|
|
|
export const activeRowStore = writable(0);
|