UNPKG

@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

18 lines 738 B
/// <reference types="react" /> import { Ace } from 'ace-builds'; import { PaneStatus } from './util'; interface PaneProps { id: string; paneStatus: PaneStatus; visible: boolean; annotations: Ace.Annotation[]; highlighted?: Ace.Annotation; cursorPositionLabel?: (row: number, column: number) => string; closeButtonAriaLabel?: string; onClose: () => void; onAnnotationClick: (annotation: Ace.Annotation) => void; onAnnotationClear: () => void; } export declare const Pane: ({ id, paneStatus, visible, annotations, highlighted, onClose, onAnnotationClick, onAnnotationClear, cursorPositionLabel, closeButtonAriaLabel, }: PaneProps) => JSX.Element | null; export {}; //# sourceMappingURL=pane.d.ts.map