mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-11 00:08:30 +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[];
|
||
|
}
|