From f797f956e60dd00ce39ebe3391f7d670f6106e66 Mon Sep 17 00:00:00 2001 From: Rory Claasen Date: Fri, 4 Nov 2022 19:04:22 +0000 Subject: [PATCH] Update index.d.ts --- packages/gatsby-link/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby-link/index.d.ts b/packages/gatsby-link/index.d.ts index dec7c2cdf2a8d..6c9cfa9ec5473 100644 --- a/packages/gatsby-link/index.d.ts +++ b/packages/gatsby-link/index.d.ts @@ -24,7 +24,7 @@ export interface GatsbyLinkProps extends LinkProps { * This component is intended _only_ for links to pages handled by Gatsby. For links to pages on other * domains or pages on the same domain not handled by the current Gatsby site, use the normal `` element. */ -export class GatsbyLink extends React.Component< +export class Link extends React.Component< GatsbyLinkProps, any > {}