Sword/src/components/Charts/TagCloud/index.d.ts

12 lines
255 B
TypeScript

import * as React from 'react';
export interface ITagCloudProps {
data: Array<{
name: string;
value: number;
}>;
height: number;
style?: React.CSSProperties;
}
export default class TagCloud extends React.Component<ITagCloudProps, any> {}