flatten-color-palette.d.mts 186 B

123456
  1. type Colors = {
  2. [key: string | number]: string | Colors;
  3. };
  4. declare function flattenColorPalette(colors: Colors): Record<string, string>;
  5. export { flattenColorPalette as default };