@plone/types
Version:
Plone's Types Package
23 lines (21 loc) • 382 B
TypeScript
export interface User {
'@id': string;
description: string;
email: string;
fullname: string;
groups: {
'@id': string;
items: {
id: string;
title: string;
}[];
items_total: number;
};
home_page: string;
id: string;
location: string;
portrait: null;
roles: string[];
username: string;
}
export type GetUsersResponse = Array<User>;