mirror of
https://github.com/langgenius/dify.git
synced 2026-02-17 08:24:41 +08:00
9 lines
197 B
TypeScript
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
|