dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
12 lines (11 loc) • 319 B
TypeScript
export type CertificateState = "pending" | "verified" | "error";
export interface ICertificate {
dns_names: string[];
id: string;
name: string;
type: string | 'custom' | 'lets_encrypt';
not_after: string;
sha1_fingerprint: string;
created_at: string;
state: CertificateState | string;
}