shorter strings

This commit is contained in:
damian0815 2022-11-01 13:56:03 +01:00 committed by Lincoln Stein
parent 16a52a607d
commit 4929ae6c1d

View File

@ -40,11 +40,8 @@ export const NUMPY_RAND_MAX = 4294967295;
export const FACETOOL_TYPES = ['gfpgan', 'codeformer'] as const; export const FACETOOL_TYPES = ['gfpgan', 'codeformer'] as const;
export const IN_PROGRESS_IMAGE_TYPES: Array<{ export const IN_PROGRESS_IMAGE_TYPES: Array<{ key: string; value: string }> = [
key: string; { key: "None", value: 'none'},
value: InProgressImageType; { key: "Fast", value: 'latents' },
}> = [ { key: "Accurate", value: 'full-res' }
{ key: 'None', value: 'none' },
{ key: 'Fast', value: 'latents' },
{ key: 'Accurate', value: 'full-res' },
]; ];