File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
invokeai/frontend/web/src Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ const zNumericalParameterConfig = z.object({
58
58
fineStep : z . number ( ) . default ( 8 ) ,
59
59
coarseStep : z . number ( ) . default ( 64 ) ,
60
60
} ) ;
61
+ export type NumericalParameterConfig = z . infer < typeof zNumericalParameterConfig > ;
61
62
62
63
/**
63
64
* Configuration options for the InvokeAI UI.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import {
31
31
export { default as InvokeAIUI } from './app/components/InvokeAIUI' ;
32
32
export type { StudioInitAction } from './app/hooks/useStudioInitAction' ;
33
33
export type { LoggingOverrides } from './app/logging/logger' ;
34
- export type { PartialAppConfig } from './app/types/invokeai' ;
34
+ export type { NumericalParameterConfig , PartialAppConfig } from './app/types/invokeai' ;
35
35
export { default as Loading } from './common/components/Loading/Loading' ;
36
36
export { default as HotkeysModal } from './features/system/components/HotkeysModal/HotkeysModal' ;
37
37
export { default as InvokeAiLogoComponent } from './features/system/components/InvokeAILogoComponent' ;
You can’t perform that action at this time.
0 commit comments