aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/plugin-index/peertube-plugin-index-list.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/plugins/plugin-index/peertube-plugin-index-list.model.ts')
-rw-r--r--shared/models/plugins/plugin-index/peertube-plugin-index-list.model.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/shared/models/plugins/plugin-index/peertube-plugin-index-list.model.ts b/shared/models/plugins/plugin-index/peertube-plugin-index-list.model.ts
new file mode 100644
index 000000000..ecb46482e
--- /dev/null
+++ b/shared/models/plugins/plugin-index/peertube-plugin-index-list.model.ts
@@ -0,0 +1,10 @@
1import { PluginType } from '../plugin.type'
2
3export interface PeertubePluginIndexList {
4 start: number
5 count: number
6 sort: string
7 pluginType?: PluginType
8 currentPeerTubeEngine?: string
9 search?: string
10}