@livetiles/reach-plugin-types 0.5.0-preview.253 → 0.5.0-preview.255
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/lib/index.d.ts +2 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -284,6 +284,7 @@ declare module "libs/shared/util/environment/src/AppConfiguration" {
|
|
|
284
284
|
}
|
|
285
285
|
declare module "libs/shared/util/environment/src/ClientConfig" {
|
|
286
286
|
import { AnalyticsConfig } from "libs/shared/util/environment/src/AnalyticsConfig";
|
|
287
|
+
import { ConfigType } from "libs/shared/util/environment/src/AppConfiguration";
|
|
287
288
|
export interface ClientConfig {
|
|
288
289
|
maxFileSizeInMb: number;
|
|
289
290
|
unsplash: {
|
|
@@ -302,6 +303,7 @@ declare module "libs/shared/util/environment/src/ClientConfig" {
|
|
|
302
303
|
apiKey: string;
|
|
303
304
|
};
|
|
304
305
|
analytics: AnalyticsConfig;
|
|
306
|
+
configType: ConfigType;
|
|
305
307
|
}
|
|
306
308
|
}
|
|
307
309
|
declare module "libs/shared/util/environment/src/EnvironmentConfig" {
|