UNPKG

musicard-quartz

Version:

Discord music bot module, with aesthetic features. equipped with a music card that is different from the others.

26 lines (23 loc) 756 B
export declare class musicCard { constructor(options?: { name?: string; author?: string; color?: string; theme?: "quartz+" | "onepiece+" | "vector+"; brightness?: number; thumbnail?: string; progress?: number; startTime?: string; endTime?: string; }); public setName(name: string): this; public setAuthor(author: string): this; public setColor(color: string): this; public setTheme(theme: "quartz+" | "onepiece+" | "vector+"): this; public setBrightness(brightness: number): this; public setThumbnail(thumbnail: string): this; public setProgress(progress: number): this; public setStartTime(starttime: string): this; public setEndTime(endtime: string): this; public build(): Promise<Buffer>; }