mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-22 01:16:07 +02:00
This PR adds: * Generated types for useProjectDoraMetrics * Mobile enhancements * Tooltips --------- Co-authored-by: Thomas Heartman <thomas@getunleash.ai>
18 lines
588 B
TypeScript
18 lines
588 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ProjectAddRoleAccessSchemaGroupsItem } from './projectAddRoleAccessSchemaGroupsItem';
|
|
import type { ProjectAddRoleAccessSchemaUsersItem } from './projectAddRoleAccessSchemaUsersItem';
|
|
|
|
/**
|
|
* An object containing a collection of users and a collection of groups.
|
|
*/
|
|
export interface ProjectAddRoleAccessSchema {
|
|
/** A list of groups IDs */
|
|
groups: ProjectAddRoleAccessSchemaGroupsItem[];
|
|
/** A list of user IDs */
|
|
users: ProjectAddRoleAccessSchemaUsersItem[];
|
|
}
|