mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-24 15:40:21 +01:00
31 lines
847 B
TypeScript
31 lines
847 B
TypeScript
import { atom } from "jotai";
|
|
import { atomWithStorage } from "jotai/utils";
|
|
|
|
export const customModelsPathAtom = atomWithStorage<string | null>(
|
|
"customModelsPath",
|
|
null
|
|
);
|
|
export const scaleAtom = atomWithStorage<"2" | "3" | "4">("scale", "4");
|
|
export const batchModeAtom = atom<boolean>(false);
|
|
export const outputPathAtom = atom<string | null>("");
|
|
export const progressAtom = atom<string>("");
|
|
|
|
export const rememberOutputFolderAtom = atomWithStorage<boolean>(
|
|
"rememberOutputFolder",
|
|
false
|
|
);
|
|
|
|
export const dontShowCloudModalAtom = atomWithStorage<boolean>(
|
|
"dontShowCloudModal",
|
|
false
|
|
);
|
|
|
|
export const noImageProcessingAtom = atomWithStorage<boolean>(
|
|
"noImageProcessing",
|
|
false
|
|
);
|
|
|
|
export const compressionAtom = atomWithStorage<number>("compression", 0);
|
|
|
|
export const overwriteAtom = atomWithStorage("overwrite", false);
|