UNPKG

trading-signals

Version:

Technical indicators to run technical analysis with JavaScript / TypeScript.

9 lines (8 loc) 238 B
type PushUpdateOptions<T> = { array: T[]; item: T; maxLength: number; replace: boolean; }; export declare function pushUpdate<T>({ array, item, maxLength, replace }: PushUpdateOptions<T>): T | null | undefined; export {};