aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/result-list.model.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-07-05 13:26:25 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-07-05 14:14:16 +0200
commit6fcd19ba737f1f5614a56c6925adb882dea43b8d (patch)
tree3365a96d82bc7f00ae504a568725c8e914150cf8 /shared/models/result-list.model.ts
parent5fe7e898316e18369c3e1aba307b55077adc7bfb (diff)
downloadPeerTube-6fcd19ba737f1f5614a56c6925adb882dea43b8d.tar.gz
PeerTube-6fcd19ba737f1f5614a56c6925adb882dea43b8d.tar.zst
PeerTube-6fcd19ba737f1f5614a56c6925adb882dea43b8d.zip
Move to promises
Closes https://github.com/Chocobozzz/PeerTube/issues/74
Diffstat (limited to 'shared/models/result-list.model.ts')
-rw-r--r--shared/models/result-list.model.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/shared/models/result-list.model.ts b/shared/models/result-list.model.ts
new file mode 100644
index 000000000..2d5147a86
--- /dev/null
+++ b/shared/models/result-list.model.ts
@@ -0,0 +1,4 @@
1export interface ResultList<T> {
2 total: number
3 data: T[]
4}