@revmax/agent-sdk
Version:
Official Node.js SDK for RevMax - billing, customer management, and usage tracking
10 lines (9 loc) • 323 B
TypeScript
import { AuthMethod } from '../types';
import { ApiKeyAuth } from './apiKey';
/**
* Create an appropriate authentication method based on input
* @param auth - Authentication credentials
* @returns Appropriate authentication method
*/
export declare function createAuth(auth: string): AuthMethod;
export { ApiKeyAuth };