@sunrise-upc/mobile-prod-card 5.0.1-beta.0 → 5.0.1-beta.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/StaticLineTable/StaticLineTableStore/StaticLineTableProvider.d.ts +21 -0
- package/dist/cjs/components/StaticLineTable/TvOptionsContainer.d.ts +1 -1
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/services/LineTableService.d.ts +1 -0
- package/dist/esm/components/StaticLineTable/StaticLineTableStore/StaticLineTableProvider.d.ts +21 -0
- package/dist/esm/components/StaticLineTable/TvOptionsContainer.d.ts +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/services/LineTableService.d.ts +1 -0
- package/package.json +1 -1
@@ -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,
|
2
|
+
declare const TvOptionsContainer: ({ content, constants, metadata, setTvOptionsData }: any) => JSX.Element;
|
3
3
|
export default TvOptionsContainer;
|