Added dist files
This commit is contained in:
7
dist/domain/models/Track.d.ts
vendored
Normal file
7
dist/domain/models/Track.d.ts
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
export declare class Track {
|
||||
constructor(id: number, title: string, artist: string, duration: number);
|
||||
id: number;
|
||||
title: string;
|
||||
artist: string;
|
||||
duration: number;
|
||||
}
|
||||
13
dist/domain/models/Track.js
vendored
Normal file
13
dist/domain/models/Track.js
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var Track = /** @class */ (function () {
|
||||
function Track(id, title, artist, duration) {
|
||||
this.id = id;
|
||||
this.title = title;
|
||||
this.artist = artist;
|
||||
this.duration = duration;
|
||||
}
|
||||
return Track;
|
||||
}());
|
||||
exports.Track = Track;
|
||||
//# sourceMappingURL=Track.js.map
|
||||
1
dist/domain/models/Track.js.map
vendored
Normal file
1
dist/domain/models/Track.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"Track.js","sourceRoot":"","sources":["../../../src/domain/models/Track.ts"],"names":[],"mappings":";;AACA;IACI,eAAY,EAAU,EAAE,KAAa,EAAE,MAAc,EAAE,QAAe;QAClE,IAAI,CAAC,EAAE,GAAE,EAAE,CAAC;QACZ,IAAI,CAAC,KAAK,GAAE,KAAK,CAAC;QAClB,IAAI,CAAC,MAAM,GAAE,MAAM,CAAC;QACpB,IAAI,CAAC,QAAQ,GAAE,QAAQ,CAAC;IAC5B,CAAC;IAML,YAAC;AAAD,CAAC,AAZD,IAYC;AAZY,sBAAK"}
|
||||
Reference in New Issue
Block a user