13 lines
314 B
TypeScript
13 lines
314 B
TypeScript
import { FC } from 'react';
|
|
export interface CompaterImageProps {
|
|
url: string;
|
|
label: string;
|
|
openRoll?: boolean;
|
|
urls?: Array<string>;
|
|
specialTitle: String;
|
|
noTargetImageTip?: string;
|
|
score?: number;
|
|
}
|
|
declare const CompaterImage: FC<CompaterImageProps>;
|
|
export default CompaterImage;
|