We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d3ffb7 commit 67755f6Copy full SHA for 67755f6
src/Libs/Vidyano/service.ts
@@ -1,7 +1,7 @@
1
namespace Vidyano {
2
"use strict";
3
4
- export const version = "latest";
+ export let version = "latest";
5
6
export class Service extends Vidyano.Common.Observable<Service> {
7
private static _getMs = window.performance && window.performance.now ? () => window.performance.now() : () => new Date().getTime();
src/Libs/Vidyano/vidyano.d.ts
@@ -850,7 +850,7 @@ declare namespace Vidyano {
850
}
851
852
declare namespace Vidyano {
853
- const version = "latest";
+ let version: string;
854
class Service extends Vidyano.Common.Observable<Service> {
855
serviceUri: string;
856
hooks: ServiceHooks;
0 commit comments