mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-13 08:05:23 +00:00
* feat: connect fix btn in flow editor to ai chat * adapt to unified chat * cleaning * cleanup
16 lines
403 B
TypeScript
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
|
|
}>
|
|
}
|