sslko - v2.0.2
    Preparing search index...

    Interface CertificateDates

    CertificateDates contains the dates and status of a certificate.

    interface CertificateDates {
        daysLeft: number;
        daysTotal: number;
        expired: boolean;
        validFromDate: Date;
        validToDate: Date;
    }

    Hierarchy (View Summary)

    Index

    Properties

    daysLeft: number

    The number of days left until the certificate expires.

    daysTotal: number

    The total number of days the certificate is valid.

    expired: boolean

    A boolean indicating if the certificate is expired.

    validFromDate: Date

    The date when the certificate becomes valid.

    validToDate: Date

    The date when the certificate expires.