feat: Add input parameter to begin operator #3355 (#3375)

### What problem does this PR solve?

feat: Add input parameter to begin operator #3355

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-11-13 14:54:10 +08:00
committed by GitHub
parent 9fc092a911
commit 1fe9a2e6fd
8 changed files with 443 additions and 17 deletions

View File

@ -100,3 +100,12 @@ export type NodeData = {
};
export type IPosition = { top: number; right: number; idx: number };
export interface BeginQuery {
key: string;
type: string;
value: string;
optional: boolean;
name: string;
options: (number | string | boolean)[];
}