UNPKG

brella-transition

Version:
20 lines (19 loc) 360 B
type HSL = { h: number; s: number; l: number; }; export declare class TinierColor { hsl: HSL; constructor(input: string | HSL); clone(): TinierColor; darken(amount?: number): this; spin(amount: number): this; toRgb(): { r: number; g: number; b: number; }; toHexString(): string; } export {};