mirror of
https://github.com/artegoser/piped-api.git
synced 2024-11-05 20:13:58 +03:00
fix: add types to playlist
This commit is contained in:
parent
5465963650
commit
963be51741
3 changed files with 12 additions and 6 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "piped-api",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "piped-api",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.1",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"axios": "^1.4.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "piped-api",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.1",
|
||||
"description": "",
|
||||
"main": "dist/index.js",
|
||||
"type": "module",
|
||||
|
@ -14,7 +14,7 @@
|
|||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "tsc",
|
||||
"docs": "typedoc src/index.ts src/types.ts",
|
||||
"prepublishOnly": "npm run build"
|
||||
"prepublishOnly": "npm i && npm run build"
|
||||
},
|
||||
"keywords": [
|
||||
"api",
|
||||
|
|
10
src/types.ts
10
src/types.ts
|
@ -128,16 +128,22 @@ export interface NextPageChannel {
|
|||
}
|
||||
|
||||
export interface Playlist {
|
||||
url: string;
|
||||
bannerUrl: string;
|
||||
name: string;
|
||||
nextpage: string;
|
||||
relatedStreams: Video[];
|
||||
thumbnailUrl: string;
|
||||
uploader: string;
|
||||
thumbnailUrl?: string;
|
||||
uploader?: string;
|
||||
uploaderAvatar: string;
|
||||
uploaderUrl: string;
|
||||
videos: number;
|
||||
|
||||
type?: string;
|
||||
thumbnail?: string;
|
||||
uploaderName?: string;
|
||||
uploaderVerified?: boolean;
|
||||
playlistType?: string;
|
||||
}
|
||||
|
||||
export interface NextPagePlaylist {
|
||||
|
|
Loading…
Reference in a new issue