3 Commits
1.2.3 ... 1.2.5

Author SHA1 Message Date
Torben Pi Jensen
588c778122 Fix? 2024-02-03 15:37:46 +01:00
Torben Pi Jensen
2ec9585c74 Fix? 2024-02-03 15:37:38 +01:00
Torben Pi Jensen
d5b4cfefc3 Added playlist 2024-02-03 14:47:27 +01:00
3 changed files with 2 additions and 6 deletions

View File

@@ -28,7 +28,5 @@ export class Playlist {
}
export class PlaylistDescription {
constructor(public title: string, public listener: string) {
this.title = title;
this.listener = listener;
}
}

2
dist/dataTypes.js vendored
View File

@@ -65,8 +65,6 @@ var PlaylistDescription = /** @class */ (function () {
function PlaylistDescription(title, listener) {
this.title = title;
this.listener = listener;
this.title = title;
this.listener = listener;
}
return PlaylistDescription;
}());

View File

@@ -1,8 +1,8 @@
{
"name": "stuen-common",
"version": "1.2.3",
"version": "1.2.5",
"main": "dist/common.js",
"type": "commonjs",
"type": "module",
"types": "dist/common.d.ts",
"dependencies": {
}