| 1 | const KIT_API_URL = 'https://api.kit.com/v4'; |
| 2 | |
| 3 | interface KitConfig { |
| 4 | apiKey: string; |
| 5 | apiSecret: string; |
| 6 | } |
| 7 | |
| 8 | const getConfig = (): KitConfig => { |
| 9 | const apiKey = process.env.KIT_API_KEY; |
nothing calls this directly
no outgoing calls
no test coverage detected