@liara/cli
Version:
The command line interface for Liara
23 lines (22 loc) • 469 B
TypeScript
export interface IZoneList {
name: string;
status: string;
nameServers: [string];
currentNameServers: [string];
lastCheckAt: string;
createdAt: string;
}
export interface IZones {
data: IZoneList[];
}
export interface IZoneGet {
status: string;
data: {
name: string;
status: string;
nameServers: [string];
currentNameServers: [string];
lastCheckAt: string;
createdAt: string;
};
}