Files
dify/web/types/try-app.ts

9 lines
197 B
TypeScript

import type { App } from '@/models/explore'
export type TryAppSelection = {
appId: string
app: App
}
export type SetTryAppPanel = (showTryAppPanel: boolean, params?: TryAppSelection) => void