soundcloud.ts
Version:
Soundcloud API v2 wrapper with typings.
25 lines (22 loc) • 527 B
text/typescript
import type {SoundcloudPlaylist} from "./index"
export interface SoundcloudActivityCollection {
collection: SoundcloudActivity[]
next_href: string
future_href: string
}
export interface SoundcloudActivity {
origin: SoundcloudPlaylist
tags: string | null
created_at: string
type: string
}
export interface SoundcloudConnection {
created_at: string
display_name: string
id: number
post_favorite: boolean
post_publish: false
service: string
type: string
uri: string
}