| 5 | const BASE_URL = 'https://api.vercel.com'; |
| 6 | |
| 7 | export default class Vercel { |
| 8 | static getDomain = async (domain: string): Promise<any> => { |
| 9 | const response = await fetch( |
| 10 | `${BASE_URL}/v5/domains/${domain}?teamId=${TEAM_ID}`, |
nothing calls this directly
no outgoing calls
no test coverage detected