10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
export interface PeertubePluginLatestVersionRequest {
|
|
currentPeerTubeEngine?: string,
|
|
|
|
npmNames: string[]
|
|
}
|
|
|
|
export type PeertubePluginLatestVersionResponse = {
|
|
npmName: string
|
|
latestVersion: string | null
|
|
}[]
|