diff --git a/packages/gatsby-plugin-google-analytics/index.d.ts b/packages/gatsby-plugin-google-analytics/index.d.ts new file mode 100644 index 0000000000000..60693b98a1933 --- /dev/null +++ b/packages/gatsby-plugin-google-analytics/index.d.ts @@ -0,0 +1,11 @@ +import * as React from "react" + +interface OutboundLinkProps { + onClick?: (event: React.MouseEvent) => void +} + +class OutboundLink extends React.Component< + OutboundLinkProps & React.HTMLProps, + any +> {} +export { OutboundLink }