@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
13 lines • 698 B
TypeScript
import { NonCancelableEventHandler } from '../../internal/events';
import { DrawerConfig as RuntimeDrawerConfig, DrawerStateChangeParams } from '../../internal/plugins/controllers/drawers';
import { AppLayoutProps } from '../interfaces';
export interface RuntimeDrawer extends AppLayoutProps.Drawer {
onToggle?: NonCancelableEventHandler<DrawerStateChangeParams>;
}
export interface DrawersLayout {
global: Array<RuntimeDrawer>;
localBefore: Array<RuntimeDrawer>;
localAfter: Array<RuntimeDrawer>;
}
export declare function convertRuntimeDrawers(localDrawers: Array<RuntimeDrawerConfig>, globalDrawers: Array<RuntimeDrawerConfig>): DrawersLayout;
//# sourceMappingURL=index.d.ts.map