recharts
Version:
React charts
16 lines (15 loc) • 1.21 kB
TypeScript
import { RechartsRootState } from '../store';
import { StackOffsetType } from '../../util/types';
import { SyncMethod } from '../../synchronisation/types';
import { BaseValue } from '../../cartesian/Area';
export declare const selectRootMaxBarSize: (state: RechartsRootState) => number | undefined;
export declare const selectBarGap: (state: RechartsRootState) => string | number | undefined;
export declare const selectBarCategoryGap: (state: RechartsRootState) => string | number | undefined;
export declare const selectRootBarSize: (state: RechartsRootState) => string | number | undefined;
export declare const selectStackOffsetType: (state: RechartsRootState) => StackOffsetType;
export declare const selectReverseStackOrder: (state: RechartsRootState) => boolean;
export declare const selectChartName: (state: RechartsRootState) => string;
export declare const selectSyncId: (state: RechartsRootState) => string | number | undefined;
export declare const selectSyncMethod: (state: RechartsRootState) => SyncMethod;
export declare const selectEventEmitter: (state: RechartsRootState) => symbol | undefined;
export declare const selectChartBaseValue: (state: RechartsRootState) => BaseValue | undefined;