mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 11:32:30 -06:00
7 lines
161 B
TypeScript
7 lines
161 B
TypeScript
declare const DEC2HEX: Record<number, string>;
|
|
declare const TYPE: {
|
|
readonly ALL: 0;
|
|
readonly RGB: 1;
|
|
readonly HSL: 2;
|
|
};
|
|
export { DEC2HEX, TYPE };
|