UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

24 lines 559 B
export interface IUsers { '@odata.context': string; value: Value[]; } export interface Value { '@odata.type': string; '@odata.id': string; '@odata.editLink': string; Id: number; IsHiddenInUI: boolean; LoginName: string; Title: string; PrincipalType: number; Email: string; IsEmailAuthenticationGuestUser: boolean; IsShareByEmailGuestUser: boolean; IsSiteAdmin: boolean; UserId?: UserId; } export interface UserId { NameId: string; NameIdIssuer: string; } //# sourceMappingURL=IUsers.d.ts.map