Type Alias WaldiezFlowProps
WaldiezFlowProps: {
flowId: string;
inputPrompt?: { previousMessages: string[]; prompt: string } | null;
monacoVsPath?: string | null;
onChange?: (content: string) => void | null;
onConvert?: (flow: string, to: "py" | "ipynb") => void | null;
onRun?: (flow: string) => void | null;
onSave?: (flow: string) => void | null;
onUpload?: (files: File[]) => Promise<string[]> | null;
onUserInput?: (userInput: string) => void | null;
storageId: string;
}
Type declaration
flowId: string
Optional
inputPrompt?: { previousMessages: string[]; prompt: string } | null
Optional
monacoVsPath?: string | null
Optional
onChange?: (content: string) => void | null
Optional
onConvert?: (flow: string, to: "py" | "ipynb") => void | null
Optional
onRun?: (flow: string) => void | null
Optional
onSave?: (flow: string) => void | null
Optional
onUpload?: (files: File[]) => Promise<string[]> | null
Optional
onUserInput?: (userInput: string) => void | null
storageId: string