@awsui/components-react
Version:
AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A
13 lines (12 loc) • 511 B
TypeScript
import { ElementWrapper } from '@awsui/test-utils-core/dom';
import CommonChartWrapper from '../charts';
export default class MixedChartWrapper extends CommonChartWrapper {
static rootSelector: string;
findFilterContainer(): ElementWrapper | null;
findChart(): ElementWrapper | null;
findSeries(): Array<ElementWrapper>;
findXAxisTitle(): ElementWrapper | null;
findYAxisTitle(): ElementWrapper | null;
findXTicks(): Array<ElementWrapper>;
findYTicks(): Array<ElementWrapper>;
}