@uh-joan/cortellis-mcp-server
Version:
MCP server for Cortellis drug database search and ontology exploration
22 lines (19 loc) • 497 B
TypeScript
declare module 'request-digest' {
interface DigestResponse {
statusCode: number;
headers: { [key: string]: string | string[] };
body: string;
}
interface DigestRequest {
host: string;
path: string;
port: number;
method: string;
headers: { [key: string]: string };
}
interface DigestClient {
requestAsync(options: DigestRequest): Promise<DigestResponse>;
}
function digest(username: string, password: string): DigestClient;
export = digest;
}