We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d5ccff commit 7fee096Copy full SHA for 7fee096
packages/gatsby-plugin-google-analytics/index.d.ts
@@ -0,0 +1,11 @@
1
+import * as React from "react"
2
+
3
+interface OutboundLinkProps {
4
+ onClick?: (event: React.MouseEvent<HTMLAnchorElement>) => void
5
+}
6
7
+class OutboundLink extends React.Component<
8
+ OutboundLinkProps & React.HTMLProps<HTMLAnchorElement>,
9
+ any
10
+> {}
11
+export { OutboundLink }
0 commit comments