mcp-wtit
Version:
A Model Context Protocol (MCP) server that provides current time in ISO8601 format with timezone support
11 lines • 378 B
TypeScript
export declare class TimeServiceError extends Error {
readonly code: string;
constructor(message: string, code: string);
}
export declare class InvalidTimeZoneError extends TimeServiceError {
constructor(timezone: string);
}
export declare class TimeFormatError extends TimeServiceError {
constructor(message: string);
}
//# sourceMappingURL=time.errors.d.ts.map