@zthun/romulator-client 1.1.0 → 1.3.0
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/config/config-media.d.mts +6 -0
- package/dist/config/config.d.mts +9 -0
- package/dist/index.cjs +324 -396
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +3 -0
- package/dist/index.js +320 -398
- package/dist/index.js.map +1 -1
- package/dist/media/media-type.d.mts +73 -0
- package/dist/media/media.d.mts +45 -0
- package/dist/system/system-id.d.mts +37 -0
- package/dist/system/system-type.d.mts +15 -0
- package/dist/system/system.d.mts +155 -7
- package/package.json +5 -5
package/dist/config/config.d.mts
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
import { IZMetadata } from '@zthun/helpful-query';
|
|
2
|
+
/**
|
|
3
|
+
* Represents a list of known config ids
|
|
4
|
+
*/
|
|
2
5
|
export declare enum ZRomulatorConfigId {
|
|
6
|
+
/**
|
|
7
|
+
* Config for games.
|
|
8
|
+
*/
|
|
3
9
|
Games = "games",
|
|
10
|
+
/**
|
|
11
|
+
* Config id for media.
|
|
12
|
+
*/
|
|
4
13
|
Media = "media"
|
|
5
14
|
}
|
|
6
15
|
export interface IZRomulatorConfig<T = any> {
|