aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/peertube-plugin-latest-version.model.ts
blob: 811a64429c1753ebbc782033151f977176d78a6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export interface PeertubePluginLatestVersionRequest {
  currentPeerTubeEngine?: string

  npmNames: string[]
}

export type PeertubePluginLatestVersionResponse = {
  npmName: string
  latestVersion: string | null
}[]