UNPKG

harperdb

Version:

HarperDB is a distributed database, caching service, streaming broker, and application development platform focused on performance and ease of use.

19 lines (18 loc) 545 B
/** * Certificate verification source that handles both CRL and OCSP methods */ import { Resource } from '../../resources/Resource.ts'; import type { Query } from '../../resources/ResourceInterface.ts'; /** * Certificate Verification Source that can handle both CRL and OCSP */ export declare class CertificateVerificationSource extends Resource { get(query: Query): Promise<{ certificate_id: string; status: any; reason: any; checked_at: number; expiresAt: any; method: string; }>; }