We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ed9539 commit 58c8bc4Copy full SHA for 58c8bc4
src/api/list_dns_records.ts
@@ -10,7 +10,7 @@ import { ApiRequestOptions } from './api_request_options.ts';
10
* @param options Options for the API fetch
11
* @returns List of all DNS records found.
12
*/
13
-export default function listDnsRecordsFromApi(options: ApiRequestOptions) : Promise<DnsRecord[]> {
+export default function listDnsRecordsFromApi(options : ApiRequestOptions) : Promise<DnsRecord[]> {
14
return fetch(
15
`${options.apiEndpoint}zones/${options.zoneId}/dns_records?type=${supportedDnsRecordTypes.join(',')}`,
16
{
0 commit comments