@vreippainen/hevy-mcp-server
Version:
A MCP server for Hevy
10 lines (9 loc) • 329 B
TypeScript
/**
* Utility functions for date operations
*/
/**
* Get a start date based on the specified timeframe
* @param timeframe The timeframe to calculate the start date for
* @returns The calculated start date
*/
export declare function getDateRangeFromTimeframe(timeframe: 'week' | 'month' | 'quarter' | 'year' | 'all'): Date;