]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/typings/models/oauth/oauth-token.ts
Apply the fix to both expanded and not expanded, using convention
[github/Chocobozzz/PeerTube.git] / server / typings / models / oauth / oauth-token.ts
1 import { OAuthTokenModel } from '@server/models/oauth/oauth-token'
2 import { PickWith } from '@server/typings/utils'
3 import { MUserAccountUrl } from '../user/user'
4
5 type Use<K extends keyof OAuthTokenModel, M> = PickWith<OAuthTokenModel, K, M>
6
7 // ############################################################################
8
9 export type MOAuthToken = Omit<OAuthTokenModel, 'User' | 'OAuthClients'>
10
11 export type MOAuthTokenUser =
12 MOAuthToken &
13 Use<'User', MUserAccountUrl> &
14 { user?: MUserAccountUrl }