/** * @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 = [red: T, green: T, blue: T]; export declare type RGBATuple = [red: T, green: T, blue: T, alpha: T];