(cliApiKey?: string)
| 88 | * Create a PaystackClient instance with configuration |
| 89 | */ |
| 90 | export function createPaystackClient(cliApiKey?: string): PaystackClient { |
| 91 | const config = createPaystackConfig(cliApiKey); |
| 92 | return new PaystackClient(config.secretKey, config.baseURL, undefined, config.timeout); |
| 93 | } |
no test coverage detected