@fractalpay/fractalpay-next-dev 0.0.253 → 0.0.254

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/global.d.ts CHANGED
@@ -1,4 +1,3 @@
1
1
  interface Window {
2
2
  DatacapWebToken: any; // Replace with the actual type of DatacapWebToken if it's not a string
3
- google: any;
4
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fractalpay/fractalpay-next-dev",
3
- "version": "0.0.253",
3
+ "version": "0.0.254",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "scripts": {
@@ -1,18 +0,0 @@
1
- import React from "react";
2
-
3
- declare global {
4
- namespace JSX {
5
- interface IntrinsicElements {
6
- "apple-pay-button": React.DetailedHTMLProps<
7
- React.HTMLAttributes<HTMLElement>,
8
- HTMLElement
9
- > & {
10
- buttonstyle?: "black" | "white" | "white-outline";
11
- type?: "buy" | "donate" | "plain" | "pay" | "book" | "checkout";
12
- locale?: string;
13
- };
14
- }
15
- }
16
- }
17
-
18
- export {};