steam-family-bot-core
Version:
一个用于新版 Steam 家庭的库存监控 Bot 插件
13 lines (12 loc) • 328 B
TypeScript
interface WordCloudProps {
width: number;
height: number;
words: WordData[];
className: string;
}
export interface WordData {
text: string;
value: number;
}
export default function EchartWordCloud({ width, height, words, className, }: WordCloudProps): import("react/jsx-runtime").JSX.Element;
export {};