8cb202eb29
* Add JavaScript admin client to repository * Apply review feedback Co-authored-by: Stian Thorgersen <stian@redhat.com> --------- Co-authored-by: Stian Thorgersen <stian@redhat.com>
6 lines
151 B
TypeScript
6 lines
151 B
TypeScript
export default interface PermissionRepresentation {
|
|
claims?: { [index: string]: string };
|
|
rsid?: string;
|
|
rsname?: string;
|
|
scopes?: string[];
|
|
}
|