amazon-ivs-react-native-player
Version:
amazon-ivs-react-native-player
19 lines (18 loc) • 328 B
JavaScript
;
let sourceId = 0;
export const createSourceWrapper = url => {
return new SourceWrapper(sourceId++, url);
};
class SourceWrapper {
constructor(id, url) {
this._id = id;
this._url = url;
}
getId() {
return this._id;
}
getUri() {
return this._url;
}
}
//# sourceMappingURL=source.js.map