@formant/ava
Version:
A framework for automated visual analytics.
9 lines (8 loc) • 363 B
TypeScript
import type { ChangePointInfo, CommonParameter, GetPatternInfo } from '../../types';
type ChangePointItem = {
index: number;
significance: number;
};
export declare const findChangePoints: (series: number[], changePointsParameter: CommonParameter) => ChangePointItem[];
export declare const getChangePointInfo: GetPatternInfo<ChangePointInfo>;
export {};