mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
7 lines
104 B
TypeScript
7 lines
104 B
TypeScript
|
import IRole from './role';
|
||
|
|
||
|
export interface IProfile {
|
||
|
rootRole: IRole;
|
||
|
projects: string[];
|
||
|
}
|