File size: 287 Bytes
3b4bd9f
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
/* eslint-disable @typescript-eslint/no-explicit-any */
import { writable } from "svelte/store";

// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const generationStore = writable<{
  form?: Record<string, any>,
  image?: string | ArrayBuffer | null,
}>(undefined);