@types/gandi-livedns
TypeScript icon, indicating that this package has built-in type declarations

0.0.33 • Public • Published

Installation

npm install --save @types/gandi-livedns

Summary

This package contains type definitions for gandi-livedns (http://doc.livedns.gandi.net/).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gandi-livedns.

index.d.ts

interface Zone {
    uuid: string;
    name: string;
    primary_ns: string;
    apex_alias: string;
    email: string;
    serial: number;
    refresh: number;
    retry: number;
    expire: number;
    minimum: number;
}

interface ZoneRecord {
    rrset_name: string;
    /**
     * One of A, AAA, CNAME, MX, NS, TXT, WKS, SRV, LOC, SPF, SSHFP, DNAME
     */
    rrset_type: string;
    rrset_ttl: number;
    rrset_values: string[];
}

interface Domain {
    fqdn: string;
    zone_uuid: string;
}

interface Snapshot {
    serial: number;
    zone_uuid: string;
    /**
     * Can be used as a date with "new Date(change_time);"
     */
    change_time: string;
    zone_data: ZoneRecord[];
}

Additional Details

  • Last updated: Tue, 30 Jan 2024 21:35:45 GMT
  • Dependencies: none

Credits

These definitions were written by Xavier Stouder.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/gandi-livedns

Weekly Downloads

1

Version

0.0.33

License

MIT

Unpacked Size

3.98 kB

Total Files

5

Last publish

Collaborators

  • types