aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/peertube-plugin-latest-version.model.ts
blob: dec4618fa282f8b48af111e37087972d40ac2682 (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
}[]