@rxjs-ninja/rxjs-utility
Version:
Useful utilities for RxJS
13 lines (12 loc) • 398 B
TypeScript
/**
* @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];