growwapi
Version:
NodeJS SDK for Groww trading APIs
5 lines (4 loc) • 352 B
TypeScript
import { InstructionsTypeParams } from '../types/InstructionsTypeParams';
export declare function parseCSV(csv: string): Record<string, any>[];
export declare function filterRows(data: Record<string, any>[], params: InstructionsTypeParams): Record<string, any>[];
export declare function toCamelCaseKeys(row: Record<string, any>): Record<string, any>;