1
0
Fork 0
mirror of synced 2024-06-02 02:25:17 +12:00
budibase/packages/types/src/documents/app/app.ts

19 lines
342 B
TypeScript
Raw Normal View History

2022-05-21 08:16:29 +12:00
import { Document } from "../document"
export interface App extends Document {
2022-05-04 09:58:19 +12:00
appId: string
type: string
version: string
componentLibraries: string[]
name: string
url: string | undefined
template: string | undefined
instance: AppInstance
tenantId: string
status: string
}
export interface AppInstance {
_id: string
2022-05-04 09:58:19 +12:00
}