category20.d.ts 303 B

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