meemup-library 1.0.21 → 1.0.23

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,7 +1,8 @@
1
+ import ICustomerFacingDisplayPacketExtra from "./ICustomerFacingDisplayPacketExtra";
1
2
  interface ICustomerFacingDisplayPacket {
2
3
  r: string;
3
4
  c: string;
4
- d: any[];
5
+ d: ICustomerFacingDisplayPacketExtra[];
5
6
  }
6
7
  export default ICustomerFacingDisplayPacket;
7
8
  export declare const initCustomerFacingDisplaySetting: ICustomerFacingDisplayPacket;
@@ -0,0 +1,6 @@
1
+ interface ICustomerFacingDisplayPacketExtra {
2
+ q: number;
3
+ t: string;
4
+ p: number;
5
+ }
6
+ export default ICustomerFacingDisplayPacketExtra;
@@ -1,5 +1,5 @@
1
1
  import ICustomerFacingDisplaySetting from "./ICustomerFacingDisplaySetting";
2
- interface IStore {
2
+ interface ICustomerFacingDisplayStore {
3
3
  setting: ICustomerFacingDisplaySetting;
4
4
  }
5
- export default IStore;
5
+ export default ICustomerFacingDisplayStore;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",