PeerTube/shared/models/plugins/peertube-plugin-latest-vers...

11 lines
217 B
TypeScript
Raw Normal View History

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