(licenseKey: string)
| 52 | } |
| 53 | |
| 54 | export async function clientValidateLicenseKey(licenseKey: string) { |
| 55 | return fetch(`/api/check-license-key?licenseKey=${licenseKey}`, { |
| 56 | headers: { |
| 57 | 'Content-Type': 'application/json', |
| 58 | }, |
| 59 | method: 'GET', |
| 60 | }).then((v) => v.json()) |
| 61 | } |
no outgoing calls
no test coverage detected