Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
/* eslint-disable @typescript-eslint/no-explicit-any */ | |
import type { CommunityCard } from "$lib/type"; | |
import { writable } from "svelte/store"; | |
// eslint-disable-next-line @typescript-eslint/no-explicit-any | |
export const generationStore = writable<{ | |
form?: Record<string, any>, | |
gallery?: CommunityCard, | |
image?: string | ArrayBuffer | null, | |
already_saved?: boolean, | |
}>(undefined); | |