UNPKG

164 BTypeScriptView Raw
1interface Opts {
2 theme?: 'dark' | 'default';
3 backgroundColor?: string;
4}
5export default function generate(color: string, opts?: Opts): string[];
6export {};