resolve-config-B4yBzhca.d.ts 491 B

1234567891011121314151617181920212223242526272829
  1. import { _ as _default } from './colors-C__qRT83.js';
  2. type NamedUtilityValue = {
  3. kind: 'named';
  4. /**
  5. * ```
  6. * bg-red-500
  7. * ^^^^^^^
  8. *
  9. * w-1/2
  10. * ^
  11. * ```
  12. */
  13. value: string;
  14. /**
  15. * ```
  16. * w-1/2
  17. * ^^^
  18. * ```
  19. */
  20. fraction: string | null;
  21. };
  22. type PluginUtils = {
  23. theme: (keypath: string, defaultValue?: any) => any;
  24. colors: typeof _default;
  25. };
  26. export type { NamedUtilityValue as N, PluginUtils as P };