category10.d.ts 303 B

1234567
  1. import { PaletteComponent } from '../runtime';
  2. import { Category10Palette } from '../spec/palette';
  3. export type Category10Options = Omit<Category10Palette, 'type'>;
  4. /**
  5. * Classic palette of AntV for ordinal data with 10 colors.
  6. */
  7. export declare const Category10: PaletteComponent<Category10Options>;