wordCloud.d.ts 360 B

12345
  1. import { DataComponent as DC } from '../runtime';
  2. export type WordCloudOptions = Omit<Record<string, any>, 'type'>;
  3. export declare function processImageMask(img: HTMLImageElement | string): Promise<HTMLImageElement>;
  4. export declare function normalizeFontSize(fontSize: any, range?: [number, number]): any;
  5. export declare const WordCloud: DC<WordCloudOptions>;