feat: Add component Invoke #2908 (#3067)

### What problem does this PR solve?

feat: Add component Invoke #2908

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-10-28 18:56:38 +08:00
committed by GitHub
parent d133cc043b
commit 497bc1438a
14 changed files with 407 additions and 0 deletions

View File

@ -51,6 +51,10 @@ export interface IGenerateParameter {
component_id?: string;
}
export interface IInvokeVariable extends IGenerateParameter {
value?: string;
}
export type ICategorizeItemResult = Record<
string,
Omit<ICategorizeItem, 'name'>