fix(editor): Making parameter input components label configurable (#5195)

fix(editor): Making parameter input component label configurable
This commit is contained in:
Csaba Tuncsik
2023-01-20 17:07:28 +01:00
committed by GitHub
parent 736e700902
commit 9ce526e784
4 changed files with 30 additions and 6 deletions

View File

@@ -1132,6 +1132,10 @@ export interface IParameterDependencies {
[key: string]: string[];
}
export type IParameterLabel = {
size?: 'small' | 'medium';
};
export interface IPollResponse {
closeFunction?: () => Promise<void>;
}