UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

23 lines 1.05 kB
/** * 2024-12-07: MOVE THIS TO fps-core-v7 ??? * MIGRATION CANDIDATE */ import { IFpsRoleAssignmentInfo } from "./IFpsRoleAssignmentInfo"; import { IFpsSpHttpServiceMIN } from "../../components/molecules/SpHttp/Sp/IFpsSpHttpServiceMIN"; /** * 2025-01-03: Migrated from fps-library-v2/lib/pnpjs/Permissions, pnp2/lib/services/sp/perms * combination of v2: getListRoleAssignmentsD and pnp2: fetchListPermsD * * getListRoleAssignmentsAPI gets lists's Members and RoleDefinitionBindings combined. * * import { getListRoleAssignmentsAPI } from '@mikezimm/fps-core-v7/lib/restAPIs/permissions/getListRoleAssignmentsAPI'; * * @param fpsSpService * @param webUrl * @param listTitle * @param alertMe * @param consoleLog * @returns */ export declare function getListRoleAssignmentsAPI(fpsSpService: IFpsSpHttpServiceMIN, webUrl: string, listTitle: string, alertMe: boolean | undefined, consoleLog: boolean | undefined): Promise<IFpsRoleAssignmentInfo>; //# sourceMappingURL=getListRoleAssignmentsAPI.d.ts.map