fix(ui): export NumericalParameterConfig type

This commit is contained in:
psychedelicious
2025-08-18 10:54:42 +10:00
parent b1b677997d
commit 1f8a60ded2
2 changed files with 2 additions and 1 deletions

View File

@@ -58,6 +58,7 @@ const zNumericalParameterConfig = z.object({
fineStep: z.number().default(8),
coarseStep: z.number().default(64),
});
export type NumericalParameterConfig = z.infer<typeof zNumericalParameterConfig>;
/**
* Configuration options for the InvokeAI UI.

View File

@@ -31,7 +31,7 @@ import {
export { default as InvokeAIUI } from './app/components/InvokeAIUI';
export type { StudioInitAction } from './app/hooks/useStudioInitAction';
export type { LoggingOverrides } from './app/logging/logger';
export type { PartialAppConfig } from './app/types/invokeai';
export type { NumericalParameterConfig, PartialAppConfig } from './app/types/invokeai';
export { default as Loading } from './common/components/Loading/Loading';
export { default as HotkeysModal } from './features/system/components/HotkeysModal/HotkeysModal';
export { default as InvokeAiLogoComponent } from './features/system/components/InvokeAILogoComponent';