soundcloud.ts
Version:
Soundcloud API v2 wrapper with typings.
20 lines (18 loc) • 443 B
text/typescript
import { SoundcloudSearch } from "./APITypes"
import type { SoundcloudUser } from "./UserTypes"
export interface SoundcloudComment {
kind: "comment"
id: number
created_at: string
user_id: number
track_id: number
timestamp: number
body: string
user: SoundcloudUser
self: {
urn: string
}
}
export interface SoundcloudCommentSearch extends SoundcloudSearch {
collection: SoundcloudComment[]
}