* add react support * use whoami * update * update * update * create react app * all * sqlx
8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
import type { Policy } from '$lib/gen'
|
|
import { writable } from 'svelte/store'
|
|
import type { App } from './types'
|
|
|
|
export const importStore = writable<{ summary: string; value: App; policy: Policy } | undefined>(
|
|
undefined
|
|
)
|