hqsl-ts
    Preparing search index...

    Type Alias CertificationRange

    Describes a timespan which a certain public key is entitled to use for certifying a QSO, as certified by trusted keys. This is the type of the return value of getCertifications method.

    type CertificationRange = {
        call: string;
        end: UTCDate;
        key: PublicKey;
        start: UTCDate;
    }
    Index

    Properties

    Properties

    call: string

    Callsign, with no prefixes or suffixes

    end: UTCDate

    End time in UTC

    key: PublicKey

    The public key object that certified this particular time range.

    start: UTCDate

    Start time in UTC