diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-06-10 22:15:25 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-06-10 22:15:25 +0200 |
commit | 69818c9394366b954b6ba3bd697bd9d2b09f2a16 (patch) | |
tree | ad199a18ec3c322460d6f9523fc383ee562554e0 /server/models/request-to-pod-interface.ts | |
parent | 4d4e5cd4dca78480ec7f40e747f424cd107376a4 (diff) | |
download | PeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.tar.gz PeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.tar.zst PeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.zip |
Type functions
Diffstat (limited to 'server/models/request-to-pod-interface.ts')
-rw-r--r-- | server/models/request-to-pod-interface.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/models/request-to-pod-interface.ts b/server/models/request-to-pod-interface.ts index 52116d6c4..6d75ca6e5 100644 --- a/server/models/request-to-pod-interface.ts +++ b/server/models/request-to-pod-interface.ts | |||
@@ -1,7 +1,8 @@ | |||
1 | import * as Sequelize from 'sequelize' | 1 | import * as Sequelize from 'sequelize' |
2 | 2 | ||
3 | export namespace RequestToPodMethods { | 3 | export namespace RequestToPodMethods { |
4 | export type RemoveByRequestIdsAndPod = (requestsIds, podId, callback) => void | 4 | export type RemoveByRequestIdsAndPodCallback = (err: Error) => void |
5 | export type RemoveByRequestIdsAndPod = (requestsIds: number[], podId: number, callback?: RemoveByRequestIdsAndPodCallback) => void | ||
5 | } | 6 | } |
6 | 7 | ||
7 | export interface RequestToPodClass { | 8 | export interface RequestToPodClass { |
@@ -11,7 +12,7 @@ export interface RequestToPodClass { | |||
11 | export interface RequestToPodAttributes { | 12 | export interface RequestToPodAttributes { |
12 | } | 13 | } |
13 | 14 | ||
14 | export interface RequestToPodInstance extends Sequelize.Instance<RequestToPodAttributes> { | 15 | export interface RequestToPodInstance extends RequestToPodClass, RequestToPodAttributes, Sequelize.Instance<RequestToPodAttributes> { |
15 | id: number | 16 | id: number |
16 | createdAt: Date | 17 | createdAt: Date |
17 | updatedAt: Date | 18 | updatedAt: Date |