| 6 | const { stream, video_basic_info } = require("play-dl"); |
| 7 | |
| 8 | export interface SongData { |
| 9 | url: string; |
| 10 | title: string; |
| 11 | duration: number; |
| 12 | } |
| 13 | |
| 14 | export class Song { |
| 15 | public readonly url: string; |
nothing calls this directly
no outgoing calls
no test coverage detected