Skip to content

Commit 3be18b3

Browse files
committed
fixing example app typing error
1 parent 40be33b commit 3be18b3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

example-app-spm/src/custom-elements.d.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
import '@capacitor/google-maps';
1+
import "@capacitor/google-maps";
22

3-
declare global {
3+
declare module "react" {
44
namespace JSX {
55
interface IntrinsicElements {
6-
'capacitor-google-map': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
6+
"capacitor-google-map": React.DetailedHTMLProps<
7+
React.HTMLAttributes<HTMLElement>,
8+
HTMLElement
9+
>;
710
}
811
}
912
}
1013

1114
export {};
12-

0 commit comments

Comments
 (0)