UNPKG

color-interfaces

Version:
9 lines (8 loc) 294 B
import { HSLInterface as HSLInterface_, HSL } from './ColorInterface'; import BaseHSLInterface from './BaseHSLInterface'; declare class HSLInterface extends BaseHSLInterface implements HSLInterface_ { get(): HSL; set(hsl: HSL): this; toCss(): string; } export default HSLInterface;