@zthun/romulator-client 1.2.0 → 1.3.1

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.
@@ -1,3 +1,9 @@
1
1
  export interface IZRomulatorConfigMedia {
2
2
  mediaFolder?: string;
3
3
  }
4
+ export declare class ZRomulatorConfigMediaBuilder {
5
+ private _media;
6
+ mediaFolder(folder: string): this;
7
+ copy(other: IZRomulatorConfigMedia): this;
8
+ build(): IZRomulatorConfigMedia;
9
+ }
@@ -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> {