/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ChartData } from './ChartData'; export interface CandlestickDomain { /** * The data of the CandlestickDomain. */ data: ChartData; /** * True to reverse the order of the domain values (horizontal axis). */ reversed: boolean; } //# sourceMappingURL=CandlestickDomain.d.ts.map