Skip to content

Commit 67755f6

Browse files
committed
Fixed version being added to declaration file
1 parent 8d3ffb7 commit 67755f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Libs/Vidyano/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
namespace Vidyano {
22
"use strict";
33

4-
export const version = "latest";
4+
export let version = "latest";
55

66
export class Service extends Vidyano.Common.Observable<Service> {
77
private static _getMs = window.performance && window.performance.now ? () => window.performance.now() : () => new Date().getTime();

src/Libs/Vidyano/vidyano.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ declare namespace Vidyano {
850850
}
851851
}
852852
declare namespace Vidyano {
853-
const version = "latest";
853+
let version: string;
854854
class Service extends Vidyano.Common.Observable<Service> {
855855
serviceUri: string;
856856
hooks: ServiceHooks;

0 commit comments

Comments
 (0)