Refactor: (login) -> (entry)

This commit is contained in:
2024-05-16 21:00:46 +03:00
parent 8db2858e75
commit 573a28a36a
10 changed files with 53 additions and 30 deletions
+16
View File
@@ -0,0 +1,16 @@
import { writable } from "svelte/store";
/**
* @typedef {{
* x: number,
* y: number,
* scale: number,
* }} data;
*/
/** @type {import("svelte/store").Writable<data>} */
export default writable({
x: 0.5,
y: 0.5,
scale: 1.0,
});