mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
shorter strings
This commit is contained in:
parent
16a52a607d
commit
4929ae6c1d
@ -40,11 +40,8 @@ export const NUMPY_RAND_MAX = 4294967295;
|
||||
|
||||
export const FACETOOL_TYPES = ['gfpgan', 'codeformer'] as const;
|
||||
|
||||
export const IN_PROGRESS_IMAGE_TYPES: Array<{
|
||||
key: string;
|
||||
value: InProgressImageType;
|
||||
}> = [
|
||||
{ key: 'None', value: 'none' },
|
||||
{ key: 'Fast', value: 'latents' },
|
||||
{ key: 'Accurate', value: 'full-res' },
|
||||
export const IN_PROGRESS_IMAGE_TYPES: Array<{ key: string; value: string }> = [
|
||||
{ key: "None", value: 'none'},
|
||||
{ key: "Fast", value: 'latents' },
|
||||
{ key: "Accurate", value: 'full-res' }
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user