]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/typings/models/oauth/oauth-token.ts
Add ability to disable webtorrent
[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 = MOAuthToken &
12 Use<'User', MUserAccountUrl> &
13 { user?: MUserAccountUrl }