Move to eslint
[oweals/peertube.git] / shared / models / plugins / peertube-plugin-latest-version.model.ts
1 export interface PeertubePluginLatestVersionRequest {
2   currentPeerTubeEngine?: string
3
4   npmNames: string[]
5 }
6
7 export type PeertubePluginLatestVersionResponse = {
8   npmName: string
9   latestVersion: string | null
10 }[]