mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
|
import { IPersonalAPIToken } from './personalAPIToken';
|
||
|
import { IUser } from './user';
|
||
|
|
||
|
export interface IServiceAccount extends IUser {
|
||
|
tokens: IPersonalAPIToken[];
|
||
|
}
|