mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
15 lines
355 B
TypeScript
15 lines
355 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export interface CardImgProps
|
|
extends React.ImgHTMLAttributes<HTMLImageElement> {
|
|
[key: string]: any;
|
|
tag?: React.ElementType;
|
|
top?: boolean;
|
|
bottom?: boolean;
|
|
cssModule?: CSSModule;
|
|
}
|
|
|
|
declare class CardImg extends React.Component<CardImgProps> {}
|
|
export default CardImg;
|