UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

7 lines (6 loc) 256 B
import { IPrincipal } from '../principals'; export declare function partitionPrincipals(xs: IPrincipal[]): PartitionResult; export interface PartitionResult { readonly nonComparable: IPrincipal[]; readonly comparable: Record<string, IPrincipal>; }