@hkdigital/lib-core 0.4.41 → 0.4.42
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/dist/network/loaders/audio/typedef.d.ts +4 -4
- package/dist/network/loaders/audio/typedef.js +5 -5
- package/dist/network/loaders/image/ImageScene.svelte.d.ts +0 -8
- package/dist/network/loaders/image/ImageScene.svelte.js +0 -5
- package/dist/network/loaders/typedef.d.ts +3 -0
- package/dist/network/loaders/typedef.js +4 -0
- package/package.json +1 -1
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
declare const _default: {};
|
|
2
2
|
export default _default;
|
|
3
|
+
/**
|
|
4
|
+
* // property ...
|
|
5
|
+
*/
|
|
6
|
+
export type SourceConfig = object;
|
|
3
7
|
export type MemorySourceParams = {
|
|
4
8
|
/**
|
|
5
9
|
* - Source identifier
|
|
@@ -19,7 +23,3 @@ export type MemorySource = {
|
|
|
19
23
|
audioLoader: import("./AudioLoader.svelte.js").default;
|
|
20
24
|
config?: object | undefined;
|
|
21
25
|
};
|
|
22
|
-
/**
|
|
23
|
-
* // property ...
|
|
24
|
-
*/
|
|
25
|
-
export type SourceConfig = object;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @typedef {object} SourceConfig
|
|
3
|
+
* // property ...
|
|
4
|
+
*/
|
|
5
|
+
|
|
1
6
|
/**
|
|
2
7
|
* @typedef {object} MemorySourceParams
|
|
3
8
|
* @property {string} label - Source identifier
|
|
@@ -12,9 +17,4 @@
|
|
|
12
17
|
* @property {SourceConfig} [config]
|
|
13
18
|
*/
|
|
14
19
|
|
|
15
|
-
/**
|
|
16
|
-
* @typedef {object} SourceConfig
|
|
17
|
-
* // property ...
|
|
18
|
-
*/
|
|
19
|
-
|
|
20
20
|
export default {};
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @typedef {object} SourceConfig
|
|
3
|
-
* // property ...
|
|
4
|
-
*/
|
|
5
1
|
/**
|
|
6
2
|
* @typedef {object} ImageSceneSource
|
|
7
3
|
* @property {string} label
|
|
@@ -63,10 +59,6 @@ export default class ImageScene extends SceneBase {
|
|
|
63
59
|
#private;
|
|
64
60
|
}
|
|
65
61
|
export type ImageMeta = import("./typedef.js").ImageMeta;
|
|
66
|
-
/**
|
|
67
|
-
* // property ...
|
|
68
|
-
*/
|
|
69
|
-
export type SourceConfig = object;
|
|
70
62
|
export type ImageSceneSource = {
|
|
71
63
|
label: string;
|
|
72
64
|
imageLoader: ImageLoader;
|
|
@@ -5,11 +5,6 @@ import * as expect from '../../../util/expect.js';
|
|
|
5
5
|
import SceneBase from '../base/SceneBase.svelte.js';
|
|
6
6
|
import ImageLoader from './ImageLoader.svelte.js';
|
|
7
7
|
|
|
8
|
-
/**
|
|
9
|
-
* @typedef {object} SourceConfig
|
|
10
|
-
* // property ...
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
8
|
/**
|
|
14
9
|
* @typedef {object} ImageSceneSource
|
|
15
10
|
* @property {string} label
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export * from "./audio/typedef.js";
|
|
2
|
+
export * from "./base/typedef.js";
|
|
3
|
+
export * from "./image/typedef.js";
|
|
1
4
|
declare const _default: {};
|
|
2
5
|
export default _default;
|
|
3
6
|
export type ObjectPosition = "center" | "top" | "bottom" | "left" | "right" | "left top" | "left center" | "left bottom" | "center top" | "center center" | "center bottom" | "right top" | "right center" | "right bottom" | string;
|