@am92/securities-utility
Version:
A utility package for securities applications
12 lines (11 loc) • 534 B
TypeScript
import { TIndexHandler } from '../../TYPES/IndexHandler';
import { TDerivativesIndex } from '../../TYPES/Store';
/**
* Handles indexing of derivatives data by organizing futures and options
* based on their underlying assets. This is useful for quick lookups and
* categorization of derivative scripts.
*
* @returns {TIndexHandler<TDerivativesIndex>} An object containing methods to add rows to the index
* and retrieve the indexed data.
*/
export declare const derivativesIndexHandler: () => TIndexHandler<TDerivativesIndex>;