n8n-nodes-base
Version:
Base nodes of n8n
11 lines • 322 B
TypeScript
export type Resource = 'endOfDayData' | 'exchange' | 'ticker';
export type Operation = 'get' | 'getAll';
export type EndOfDayDataFilters = {
latest?: boolean;
sort?: 'ASC' | 'DESC';
specificDate?: string;
dateFrom?: string;
dateTo?: string;
exchange?: string;
};
//# sourceMappingURL=types.d.ts.map