UNPKG

dotup-ts-node-skills-game

Version:
11 lines (10 loc) 539 B
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; }