mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
14 lines
369 B
TypeScript
14 lines
369 B
TypeScript
|
import * as React from 'react';
|
||
|
import { CSSModule } from './index';
|
||
|
|
||
|
export interface CardLinkProps
|
||
|
extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
|
||
|
[key: string]: any;
|
||
|
tag?: React.ElementType;
|
||
|
innerRef?: React.Ref<HTMLAnchorElement>;
|
||
|
cssModule?: CSSModule;
|
||
|
}
|
||
|
|
||
|
declare class CardLink extends React.Component<CardLinkProps> {}
|
||
|
export default CardLink;
|