@apps-in-toss/framework 1.1.1 → 1.1.2
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/dist/index.cjs +462 -356
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +330 -228
- package/package.json +9 -9
package/dist/index.d.cts
CHANGED
|
@@ -27,7 +27,9 @@ declare const AppsInToss: {
|
|
|
27
27
|
registerApp: typeof registerApp;
|
|
28
28
|
};
|
|
29
29
|
|
|
30
|
-
type GameWebViewProps$1 = WebViewProps$1
|
|
30
|
+
type GameWebViewProps$1 = WebViewProps$1 & {
|
|
31
|
+
canHistoryGoBack: boolean;
|
|
32
|
+
};
|
|
31
33
|
|
|
32
34
|
type WebViewProps = PartnerWebViewProps | ExternalWebViewProps | GameWebViewProps;
|
|
33
35
|
interface PartnerWebViewProps extends Omit<WebViewProps$1, InternalProps> {
|
package/dist/index.d.ts
CHANGED
|
@@ -27,7 +27,9 @@ declare const AppsInToss: {
|
|
|
27
27
|
registerApp: typeof registerApp;
|
|
28
28
|
};
|
|
29
29
|
|
|
30
|
-
type GameWebViewProps$1 = WebViewProps$1
|
|
30
|
+
type GameWebViewProps$1 = WebViewProps$1 & {
|
|
31
|
+
canHistoryGoBack: boolean;
|
|
32
|
+
};
|
|
31
33
|
|
|
32
34
|
type WebViewProps = PartnerWebViewProps | ExternalWebViewProps | GameWebViewProps;
|
|
33
35
|
interface PartnerWebViewProps extends Omit<WebViewProps$1, InternalProps> {
|