promogame-player 0.0.2 → 0.0.4
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
export interface
|
|
2
|
+
export interface PromogamePlayerProps extends React.RefAttributes<HTMLCanvasElement> {
|
|
3
3
|
apiUrl: string;
|
|
4
4
|
campaignId?: string;
|
|
5
5
|
checksum?: string;
|
|
@@ -14,4 +14,4 @@ export interface PromogameGameProps extends React.RefAttributes<HTMLCanvasElemen
|
|
|
14
14
|
userAvatar?: string;
|
|
15
15
|
userDisplayName?: string;
|
|
16
16
|
}
|
|
17
|
-
export declare const
|
|
17
|
+
export declare const PromogamePlayer: React.ForwardRefExoticComponent<Omit<PromogamePlayerProps, "ref"> & React.RefAttributes<HTMLCanvasElement>>;
|
|
@@ -14235,5 +14235,5 @@ mutation UpdateParticipantInfo($email: String, $phone: String, $avatar: String,
|
|
|
14235
14235
|
}
|
|
14236
14236
|
);
|
|
14237
14237
|
export {
|
|
14238
|
-
k0 as
|
|
14238
|
+
k0 as PromogamePlayer
|
|
14239
14239
|
};
|
package/dist/main.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { PromogamePlayer } from './components/PromogameGame';
|
package/dist/main.js
CHANGED