reservations_display/src/unique-colors.d.ts
Adam Goldsmith 9e04082b5b Switch from equicolor to unique-colors
As `equicolor` was throwing some TypeScript errors and is more
complicated than required
2021-11-12 13:42:57 -05:00

5 lines
138 B
TypeScript

declare module 'unique-colors' {
function unique_colors(n: number): string[];
function unique_shuffled_colors(n: number): string[];
}