import { IPersonOrGroup } from "../common/IModels"; import { IJitzSPContext } from "../jitzSPHttpClient"; export default class UserService { private _context; private _webAbsoluteUrl; constructor(context: IJitzSPContext); getCurrentUser: () => any; getUserProperties: (accountName: string) => Promise; getUserPropertiesByEmail: (email: string) => Promise; getCurrentUserGroups(): Promise; checkIfCurrentUserInGroup(groupName: string): Promise; checkIfUserIsInGroup(userId: number, groupName: string): Promise; getUserById: (id: number) => any; getCurrentUserPermissions: () => any; }