]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/plugins/peertube-plugin-latest-version.model.ts
Align layout for create video-channel (my-account) on create user (admin)
[github/Chocobozzz/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 }[]