@aot-tech/clockify-mcp-server
Version:
MCP Server for Clockify time tracking integration with AI tools
10 lines (9 loc) • 374 B
TypeScript
import { TCreateEntrySchema, TFindEntrySchema } from "../types";
export declare const entriesService: {
create: (entry: TCreateEntrySchema) => Promise<import("axios").AxiosResponse<any, any>>;
find: (filters: TFindEntrySchema) => Promise<{
entries: import("axios").AxiosResponse<any, any>;
totalEntries: any;
hasNextPage: boolean;
}>;
};