mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-05 08:02:18 +00:00
13 lines
399 B
TypeScript
13 lines
399 B
TypeScript
import type { Writable } from 'svelte/store'
|
|
import type { PickableProperties } from '$lib/components/flows/previousResults'
|
|
|
|
export type FlowPropPickerConfig = {
|
|
clearFocus: () => void
|
|
onSelect: (path: string) => boolean
|
|
}
|
|
|
|
export type PropPickerContext = {
|
|
flowPropPickerConfig: Writable<FlowPropPickerConfig | undefined>
|
|
pickablePropertiesFiltered: Writable<PickableProperties | undefined>
|
|
}
|