Files
windmill/frontend/src/lib/components/copilot/flow.ts
T
HugoCasa 6247d159ce feat: connect fix btn in flow editor to ai chat (#5863)
* feat: connect fix btn in flow editor to ai chat

* adapt to unified chat

* cleaning

* cleanup
2025-06-05 18:44:54 +02:00

16 lines
403 B
TypeScript

import { type InputTransform } from '$lib/gen'
import type { Writable } from 'svelte/store'
export type FlowCopilotContext = {
shouldUpdatePropertyType: Writable<{
[key: string]: 'static' | 'javascript' | undefined
}>
stepInputsLoading: Writable<boolean>
generatedExprs: Writable<{
[key: string]: string | undefined
}>
exprsToSet: Writable<{
[key: string]: InputTransform | undefined
}>
}