PeerTube/shared/models/plugins/plugin-index/peertube-plugin-index.model.ts

17 lines
243 B
TypeScript
Raw Normal View History

export interface PeerTubePluginIndex {
npmName: string
description: string
homepage: string
createdAt: Date
updatedAt: Date
popularity: number
latestVersion: string
2021-12-28 16:43:03 +01:00
official: boolean
name?: string
installed?: boolean
}