@antv/g2
Version:
the Grammar of Graphics in Javascript
9 lines (8 loc) • 296 B
TypeScript
import { DataComponent as DC } from '../runtime';
import { SortTransform } from '../spec';
export type SortOptions = Omit<SortTransform, 'type'>;
export declare function defined(d: any): boolean;
/**
* Sort data similar with Array.prototypo.sort.
*/
export declare const Sort: DC<SortOptions>;