sort.d.ts 461 B

123456789101112
  1. import type { InternalSelector } from "./types.js";
  2. import { type Traversal } from "css-what";
  3. export declare function isTraversal(token: InternalSelector): token is Traversal;
  4. /**
  5. * Sort the parts of the passed selector,
  6. * as there is potential for optimization
  7. * (some types of selectors are faster than others)
  8. *
  9. * @param arr Selector to sort
  10. */
  11. export default function sortByProcedure(arr: InternalSelector[]): void;
  12. //# sourceMappingURL=sort.d.ts.map