1
0
Fork 0
peertube/shared/models/plugins/plugin-index/peertube-plugin-latest-version.model.ts

11 lines
217 B
TypeScript
Raw Normal View History

export interface PeertubePluginLatestVersionRequest {
2020-01-31 10:56:52 -05:00
currentPeerTubeEngine?: string
npmNames: string[]
}
export type PeertubePluginLatestVersionResponse = {
npmName: string
latestVersion: string | null
}[]