constant.d.ts 320 B

1234567891011121314
  1. type InferStrategy = [string, [string, string][][]];
  2. /**
  3. * @examples
  4. * ✅
  5. * color - `discrete`, shape - `constant`
  6. * legendCategory.rule[27] is matched
  7. *
  8. * ❎
  9. * shape - `discrete`, size - `constant`
  10. * There are no rules to match
  11. *
  12. */
  13. export declare const LEGEND_INFER_STRATEGIES: InferStrategy[];
  14. export {};