UNPKG

@rxjs-ninja/rxjs-utility

Version:
13 lines (12 loc) 398 B
/** * @packageDocumentation * @module Utility */ /** * A Tuple containing `[Red, Green, Blue]` values * * @typeDef T The type of value contained in the tuple, by default can be a string, * but can be changed for numbers */ export declare type RGBTuple<T = string> = [red: T, green: T, blue: T]; export declare type RGBATuple<T = string> = [red: T, green: T, blue: T, alpha: T];