import { TransformComponent as TC } from '../runtime'; import { SortYTransform } from '../spec'; import { Sort } from './sort'; export type SortYOptions = Omit; /** * Sort domain of x scale of mark groups by groups. */ export const SortY: TC = (options = {}) => { return Sort({ ...options, channel: 'y' }); }; SortY.props = {};