UNPKG

soundcloud.ts

Version:

Soundcloud API v2 wrapper with typings.

16 lines (15 loc) 322 B
import type { SoundcloudUserMini } from "./index"; export interface SoundcloudComment { kind: "comment"; id: number; created_at: string; user_id: number; track_id: number; timestamp: number; body: string; uri: string; user: SoundcloudUserMini; self: { urn: string; }; }