Files
speckle-server/packages/frontend-2/lib/connectors/index.ts
T
Kristaps Fabians Geikins b02a07e2b6 feat: Frontend 2.0 MVP
2023-05-08 10:47:01 +03:00

30 lines
524 B
TypeScript

export type Tag = {
name: string
codeinjection_head: string
feature_image: string
slug: string
url: string
}
export type ConnectorTag = {
name: string
docsLink: string
installLink?: string
souorceLink: string
description: string
communityProvider?: string
isCommunity: boolean
stable?: string
versions: ConnectorVersion[]
directDownload: boolean
} & Tag
export type ConnectorVersion = {
Number: string
Url: string
Date: string
Prerelease: string
Architecture: number
Os: number
}