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