UNPKG

@tabuckner/random-contrast-compliant-ts

Version:

This project was bootstrapped with [TSDX](https://github.com/jaredpalmer/tsdx).

12 lines (11 loc) 264 B
export interface IRgbValue { red: number; green: number; blue: number; } export declare class RgbValue implements IRgbValue { red: number; green: number; blue: number; constructor(red: number, green: number, blue: number); }