Files
PackControl/node_modules/color-parse/index.d.ts
2026-01-15 21:52:12 +01:00

6 lines
173 B
TypeScript

export default function parse(color: string): {
space: 'rgb' | 'hsl' | 'hwb' | 'cmyk' | 'lab' | 'lch' | 'oklab' | 'oklch' | string;
values: number[];
alpha: number;
}