dotup-ts-node-skills-game
Version:
Develop alexa typescript games
11 lines (10 loc) • 539 B
TypeScript
import { ButtonColor } from './Enumerations';
export declare namespace ButtonColors {
function getAllColors(): ButtonColor[];
function getRandomColorName(): ButtonColor;
function getRandomColorNames(count?: number): string[];
function getUniqueRandomColors(count?: number, excludedColors?: ButtonColor[]): ButtonColor[];
function getRandomColors(count?: number, excludedColors?: ButtonColor[]): ButtonColor[];
function getColorName(value: string): string;
function getTranslation(color: ButtonColor): string;
}