mgtypes 1.0.59 → 1.0.60

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mgtypes",
3
- "version": "1.0.59",
3
+ "version": "1.0.60",
4
4
  "description": "types for mg development",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,10 +1,9 @@
1
1
  import { mgMapBillboards } from './Content';
2
- import { ReactElement } from 'react';
3
2
 
4
3
  /**
5
4
  * Mother Config object
6
5
  */
7
- export interface mgConfiguration {
6
+ export interface mgClientConfiguration {
8
7
  specs: mgSpecsConfig;
9
8
  colors: mgColorsConfig;
10
9
  fonts: mgFontsConfig;
@@ -209,7 +208,6 @@ export interface mgAuthenticationConfig {
209
208
  | '1 day'
210
209
  | '1 week'
211
210
  | '1 month';
212
- PAGE_COMPONENT: ReactElement
213
211
  };
214
212
  }
215
213
 
@@ -0,0 +1,9 @@
1
+ import { ReactElement } from 'react';
2
+
3
+ export interface mgComponentConfiguration {
4
+ authentication: mgAuthenticationComponentConfig
5
+ }
6
+
7
+ interface mgAuthenticationComponentConfig {
8
+ PAGE: ReactElement
9
+ }