/** * Generic logger function type * Used throughout the shared package instead of MultiModyoMCPServer["log"] */ export type Logger = (message: string, context?: unknown, level?: "debug" | "info" | "warning" | "error") => void; /** * Platform configuration interface */ export interface PlatformConfig { slug: string; name: string; url: string; token: string; } /** * Organizations map type */ export type OrganizationsMap = Map; //# sourceMappingURL=Logger.d.ts.map