diff options
Diffstat (limited to 'server/models/oauth/oauth-client-interface.ts')
-rw-r--r-- | server/models/oauth/oauth-client-interface.ts | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/server/models/oauth/oauth-client-interface.ts b/server/models/oauth/oauth-client-interface.ts index 3b4325740..3526e4159 100644 --- a/server/models/oauth/oauth-client-interface.ts +++ b/server/models/oauth/oauth-client-interface.ts | |||
@@ -1,13 +1,12 @@ | |||
1 | import * as Sequelize from 'sequelize' | 1 | import * as Sequelize from 'sequelize' |
2 | import * as Promise from 'bluebird' | ||
2 | 3 | ||
3 | export namespace OAuthClientMethods { | 4 | export namespace OAuthClientMethods { |
4 | export type CountTotalCallback = (err: Error, total: number) => void | 5 | export type CountTotal = () => Promise<number> |
5 | export type CountTotal = (callback: CountTotalCallback) => void | ||
6 | 6 | ||
7 | export type LoadFirstClientCallback = (err: Error, client: OAuthClientInstance) => void | 7 | export type LoadFirstClient = () => Promise<OAuthClientInstance> |
8 | export type LoadFirstClient = (callback: LoadFirstClientCallback) => void | ||
9 | 8 | ||
10 | export type GetByIdAndSecret = (clientId, clientSecret) => void | 9 | export type GetByIdAndSecret = (clientId: string, clientSecret: string) => Promise<OAuthClientInstance> |
11 | } | 10 | } |
12 | 11 | ||
13 | export interface OAuthClientClass { | 12 | export interface OAuthClientClass { |