tabris 3.9.0-dev.20220621 → 3.9.0-dev.20220622
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/boot.js +1 -1
- package/package.json +1 -1
- package/tabris.d.ts +3 -3
- package/tabris.js +2 -2
- package/tabris.min.js +1 -1
package/boot.js
CHANGED
package/package.json
CHANGED
package/tabris.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for Tabris.js 3.9.0-dev.
|
|
1
|
+
// Type definitions for Tabris.js 3.9.0-dev.20220622+0310
|
|
2
2
|
/// <reference path="globals.d.ts" />
|
|
3
3
|
|
|
4
4
|
// General helper types
|
|
@@ -8522,8 +8522,8 @@ export class FileSystem extends NativeObject {
|
|
|
8522
8522
|
removeDir(path: string): Promise<void>;
|
|
8523
8523
|
|
|
8524
8524
|
/**
|
|
8525
|
-
* Removes the given file if it exists. Returns a promise that resolves
|
|
8526
|
-
*
|
|
8525
|
+
* Removes the given file if it exists. Returns a promise that resolves on success or rejects if no file
|
|
8526
|
+
* exists at that path. If the path points to a directory the promise also rejects.
|
|
8527
8527
|
* @param path The path of the file to remove.
|
|
8528
8528
|
*/
|
|
8529
8529
|
removeFile(path: string): Promise<void>;
|
package/tabris.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Tabris.js 3.9.0-dev.
|
|
2
|
+
* Tabris.js 3.9.0-dev.20220622+0310
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) 2014, 2020 EclipseSource Inc.
|
|
5
5
|
* All rights reserved.
|
|
@@ -5026,7 +5026,7 @@ class Tabris extends NativeObject {
|
|
|
5026
5026
|
this.$publishProxies();
|
|
5027
5027
|
}
|
|
5028
5028
|
get version() {
|
|
5029
|
-
return '3.9.0-dev.
|
|
5029
|
+
return '3.9.0-dev.20220622+0310';
|
|
5030
5030
|
}
|
|
5031
5031
|
get started() {
|
|
5032
5032
|
return !!this._started;
|