@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
21 lines • 582 B
TypeScript
import { TableProps } from '../interfaces';
export declare const SELECTION_ITEM = "selection-item";
export declare class ItemSet<T> {
constructor(trackBy: TableProps.TrackBy<T> | undefined, items: ReadonlyArray<T>);
private trackBy;
private map;
put: (item: T) => Map<unknown, T>;
has: (item: T) => boolean;
forEach: (callbackfn: (value: T, key: unknown, map: Map<unknown, T>) => void, thisArg?: any) => void;
}
export declare const focusMarkers: {
item: {
[x: string]: string;
};
all: {
[x: string]: string;
};
root: {
[x: string]: string;
};
};