soundcloud-sync
Version:
Sync your SoundCloud likes to local files
8 lines (7 loc) • 513 B
TypeScript
import getClient from './services/getClient.ts';
import getUserLikes from './services/getUserLikes.ts';
import getMissingMusic from './services/getMissingMusic.ts';
import verifyTimestamps from './services/verifyTimestamps.ts';
import { SoundCloudSyncOptions } from './types.ts';
export { getClient, getUserLikes, getMissingMusic, verifyTimestamps };
export default function soundCloudSync({ username, folder, limit, verifyTimestamps: shouldVerifyTimestamps, noDownload, }: SoundCloudSyncOptions): Promise<void>;