@coretext-ai/qa-gusto-c0d1e2f3-a4b5-4678-b901-012345678901
Version:
MCP server with gusto integration
21 lines • 571 B
TypeScript
export interface ServerConfig {
logShipping: {
enabled: boolean;
endpoint: string;
apiKey?: string;
requireApiKey?: boolean;
batchSize: number;
flushInterval: number;
maxRetries: number;
logLevel: 'DEBUG' | 'INFO' | 'WARN' | 'ERROR' | 'FATAL';
};
gusto: {
gUSTOAPITOKEN: string;
};
}
export declare function loadConfig(): ServerConfig;
export declare function validateConfig(config: ServerConfig): {
isValid: boolean;
errors: string[];
};
//# sourceMappingURL=config.d.ts.map