mirror of https://github.com/Chocobozzz/PeerTube
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
|
export interface PeertubePluginLatestVersionRequest {
|
||
|
currentPeerTubeEngine?: string
|
||
|
|
||
|
npmNames: string[]
|
||
|
}
|
||
|
|
||
|
export type PeertubePluginLatestVersionResponse = {
|
||
|
npmName: string
|
||
|
latestVersion: string | null
|
||
|
}[]
|