Comments are now added in functions

This commit is contained in:
killer069
2021-09-29 20:23:16 +05:30
parent 8e96e24aeb
commit 5d6b9167ed
15 changed files with 342 additions and 149 deletions

View File

@@ -32,7 +32,9 @@ export interface SoundCloudTrackFormat {
};
quality: string;
}
/**
* SoundCloud Track
*/
export class SoundCloudTrack {
name: string;
id: number;
@@ -100,7 +102,9 @@ export class SoundCloudTrack {
};
}
}
/**
* SoundCloud Playlist
*/
export class SoundCloudPlaylist {
name: string;
id: number;
@@ -193,7 +197,9 @@ export class SoundCloudPlaylist {
};
}
}
/**
* SoundCloud Stream class
*/
export class Stream {
stream: PassThrough;
type: StreamType;