UNPKG
@colormate/core
Version:
beta (0.5.0-beta)
latest (0.5.1-beta-1)
0.5.1-beta-1
0.5.1-beta
0.5.0-beta
A modular and efficient color management library for JavaScript and TypeScript applications.
@colormate/core
/
dist
/
conversions
/
RgbToHsl.d.ts
6 lines
(5 loc)
•
220 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
Rgb
,
Hsl
}
from
'@types_interfaces/ColorTypes'
;
import
{
ColorConverter
}
from
'@helpers/ColorConverter'
;
export
declare
class
RgbToHsl
extends
ColorConverter
<
Rgb
,
Hsl
> {
protected
convert
(
rgb
:
Rgb
):
Hsl
; }