@notix.games/react-bridge 4.0.0 → 4.0.1
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -71,7 +71,7 @@ export interface NotixBridgeInstance<FW extends Framework> {
|
|
71
71
|
createIFrame: (props: FrameworkIFrameParams<FW>) => Promise<Partial<getIframeResult<FW> & BridgeMethodError>>;
|
72
72
|
configure: (params: InitNotixBridgeParams) => void;
|
73
73
|
configureAsync: (params: InitNotixBridgeParams) => Promise<void>;
|
74
|
-
getGames: (params
|
74
|
+
getGames: (params?: GetGamesParams) => Promise<Partial<GamesResponse & BridgeMethodError>>;
|
75
75
|
getIFrameURI: (props: Omit<BaseIFrameParams, 'style'>) => Promise<string>;
|
76
76
|
configured: boolean;
|
77
77
|
}
|