hytopia 0.14.11 → 0.14.12
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/docs/server.assetslibrary.assetslibrarypath.md +1 -1
- package/docs/server.assetslibrary.md +2 -0
- package/package.json +1 -1
- package/server.api.json +3 -3
- package/server.d.ts +1 -1
- package/server.mjs +75 -75
package/package.json
CHANGED
package/server.api.json
CHANGED
|
@@ -191,12 +191,12 @@
|
|
|
191
191
|
"members": [
|
|
192
192
|
{
|
|
193
193
|
"kind": "Property",
|
|
194
|
-
"canonicalReference": "server!AssetsLibrary
|
|
194
|
+
"canonicalReference": "server!AssetsLibrary.assetsLibraryPath:member",
|
|
195
195
|
"docComment": "/**\n * The path to the assets library package. Null if assets library is not available.\n */\n",
|
|
196
196
|
"excerptTokens": [
|
|
197
197
|
{
|
|
198
198
|
"kind": "Content",
|
|
199
|
-
"text": "readonly assetsLibraryPath: "
|
|
199
|
+
"text": "static readonly assetsLibraryPath: "
|
|
200
200
|
},
|
|
201
201
|
{
|
|
202
202
|
"kind": "Content",
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"startIndex": 1,
|
|
216
216
|
"endIndex": 2
|
|
217
217
|
},
|
|
218
|
-
"isStatic":
|
|
218
|
+
"isStatic": true,
|
|
219
219
|
"isProtected": false,
|
|
220
220
|
"isAbstract": false
|
|
221
221
|
},
|
package/server.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ export declare class AssetsLibrary {
|
|
|
38
38
|
/** The global AssetsLibrary instance as a singleton. */
|
|
39
39
|
static readonly instance: AssetsLibrary;
|
|
40
40
|
/** The path to the assets library package. Null if assets library is not available. */
|
|
41
|
-
readonly assetsLibraryPath: string | null;
|
|
41
|
+
static readonly assetsLibraryPath: string | null;
|
|
42
42
|
/**
|
|
43
43
|
* Synchronizes an asset from the assets library to the local assets directory.
|
|
44
44
|
*
|