1
0
Fork 0
peertube/shared/models/plugins/peertube-plugin-latest-version.model.ts
2019-07-24 10:58:16 +02:00

10 lines
218 B
TypeScript

export interface PeertubePluginLatestVersionRequest {
currentPeerTubeEngine?: string,
npmNames: string[]
}
export type PeertubePluginLatestVersionResponse = {
npmName: string
latestVersion: string | null
}[]