UNPKG

@pnp/spfx-controls-react

Version:

Reusable React controls for SharePoint Framework solutions

13 lines 294 B
export interface IUsersResults { users: IUserInfo[]; hasMore?: boolean; nextLink?: string; } export interface IUserInfo { displayName: string; givenName?: string; mail: string; userPrincipalName?: string; id: string; } //# sourceMappingURL=IUsersResults.d.ts.map