mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-11 08:07:15 +00:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import type { Policy } from '$lib/gen'
|
|
import { writable } from 'svelte/store'
|
|
|
|
export const importStore = writable<{ summary: string; value: any; policy: Policy } | undefined>(
|
|
undefined
|
|
)
|