File size: 389 Bytes
3b4bd9f
404baa5
3b4bd9f
 
 
 
 
404baa5
3b4bd9f
3d344de
3b4bd9f
1
2
3
4
5
6
7
8
9
10
11
12
/* 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);