Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
807cd568e1 |
@@ -27,11 +27,7 @@ export class Playlist {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
export class PlaylistDescription {
|
export class PlaylistDescription {
|
||||||
public title: string;
|
constructor(public title: string, public listener: string) {
|
||||||
|
|
||||||
public listener: string;
|
|
||||||
|
|
||||||
constructor(title: string, listener: string) {
|
|
||||||
this.title = title;
|
this.title = title;
|
||||||
this.listener = listener;
|
this.listener = listener;
|
||||||
}
|
}
|
||||||
|
|||||||
2
dist/dataTypes.js
vendored
2
dist/dataTypes.js
vendored
@@ -65,6 +65,8 @@ var PlaylistDescription = /** @class */ (function () {
|
|||||||
function PlaylistDescription(title, listener) {
|
function PlaylistDescription(title, listener) {
|
||||||
this.title = title;
|
this.title = title;
|
||||||
this.listener = listener;
|
this.listener = listener;
|
||||||
|
this.title = title;
|
||||||
|
this.listener = listener;
|
||||||
}
|
}
|
||||||
return PlaylistDescription;
|
return PlaylistDescription;
|
||||||
}());
|
}());
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "stuen-common",
|
"name": "stuen-common",
|
||||||
"version": "1.2.2",
|
"version": "1.2.3",
|
||||||
"main": "dist/common.js",
|
"main": "dist/common.js",
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"types": "dist/common.d.ts",
|
"types": "dist/common.d.ts",
|
||||||
|
|||||||
Reference in New Issue
Block a user