matchers.d.ts 702 B

123456789101112131415161718192021222324252627282930313233
  1. export declare const matchers: ({
  2. supports: string;
  3. property: string;
  4. sniff: string;
  5. matchers: {
  6. type: string;
  7. value: string;
  8. nodes: ({
  9. type: string;
  10. value: string;
  11. isVariable?: undefined;
  12. } | {
  13. type: string;
  14. value?: undefined;
  15. isVariable?: undefined;
  16. } | {
  17. type: string;
  18. isVariable: boolean;
  19. value?: undefined;
  20. })[];
  21. }[];
  22. } | {
  23. supports: string;
  24. property: string;
  25. sniff: string;
  26. matchers: {
  27. type: string;
  28. value: string;
  29. dimension: {
  30. unit: string;
  31. };
  32. }[];
  33. })[];