rsnext/examples/with-typescript/next.d.ts

11 lines
166 B
TypeScript
Raw Normal View History

declare module 'next/link' {
import { Url } from 'url'
export default class Link extends React.Component<
{
href: string | Url;
},
{}
> {}
}