@sunrise-upc/mobile-prod-card 4.7.3 → 5.0.1-beta.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -9,3 +9,4 @@ export declare const getVocherPromotion: (productID: string, voucher: string) =>
9
9
  export declare const validateP2P: (msisdn: any, endpoint: any) => Promise<any>;
10
10
  export declare const getDeviceDetails: (deviceID: any, endpoint: any) => Promise<any>;
11
11
  export declare const getDeviceModelsList: (brandId: any, endpoint: any) => Promise<any>;
12
+ export declare const fetchOttServiceOptions: () => Promise<any>;
@@ -0,0 +1,21 @@
1
+ import React, { ReactNode } from 'react';
2
+ interface AppProviderSchema {
3
+ children: ReactNode;
4
+ }
5
+ export interface ActionSchema {
6
+ type: string;
7
+ payload: any;
8
+ }
9
+ interface AppContextType {
10
+ store: StaticLineTableProviderSchema;
11
+ dispatch: React.Dispatch<ActionSchema>;
12
+ }
13
+ export interface StaticLineTableProviderSchema {
14
+ ottOptionsApi: [];
15
+ }
16
+ export declare const actionTypes: {
17
+ ottOptionsApi: string;
18
+ };
19
+ export declare const AppContext: React.Context<AppContextType | undefined>;
20
+ declare const StaticLineTableProvider: ({ children }: AppProviderSchema) => JSX.Element;
21
+ export default StaticLineTableProvider;
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
- declare const TvOptionsContainer: ({ content, offeringData, uniqueId, constants, metadata, setTvOptionsData }: any) => JSX.Element;
2
+ declare const TvOptionsContainer: ({ content, constants, metadata, setTvOptionsData }: any) => JSX.Element;
3
3
  export default TvOptionsContainer;