UNPKG
multicolors-converter
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
A very simple tool to convert colors into differents formats
multicolors-converter
/
dist
/
converters
/
Converter.d.ts
10 lines
(9 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ Color } from
"@src/types/Color"
;
export
declare abstract
class
Converter
{
static
colors: Color[];
/** * * Get all colors from outside of the Converter Class */
protected
static
getColors
()
: Color[];
}