@visactor/vmind
Version:
<div align="center"> <a href="https://github.com/VisActor#gh-light-mode-only" target="_blank"> <img alt="VisActor Logo" width="200" src="https://github.com/VisActor/.github/blob/main/profile/logo_500_200_light.svg"/> </a> <a href="https://githu
9 lines (8 loc) • 398 B
TypeScript
import type { InsightAlgorithm } from '../../type';
import { type DataInsightExtractContext, type Insight } from '../../type';
export interface OverallTrendingOptions {
alpha?: number;
calcScope?: boolean;
}
export declare const overallTrendingAlgo: (context: DataInsightExtractContext, options: OverallTrendingOptions) => Insight[];
export declare const OverallTrending: InsightAlgorithm;