Malachite is a tool to import your Last.fm and Spotify listening history to the AT Protocol network using the fm.teal.alpha.feed.play lexicon.
malachite scrobbles importer atproto music
at development 26 lines 742 B view raw
1declare module 'cli-progress' { 2 export class SingleBar { 3 constructor(options: any, preset?: any); 4 start(total: number, startValue: number, payload?: any): void; 5 update(current: number, payload?: any): void; 6 increment(delta?: number, payload?: any): void; 7 stop(): void; 8 } 9 10 export class MultiBar { 11 constructor(options: any, preset?: any); 12 create(total: number, startValue: number, payload?: any): SingleBar; 13 stop(): void; 14 } 15 16 export namespace Presets { 17 export const shades_classic: any; 18 export const shades_grey: any; 19 export const rect: any; 20 export const legacy: any; 21 } 22 23 export namespace Format { 24 export function ValueFormat(v: number, options: any, type: string): string; 25 } 26}