UNPKG

ssl-checker-kzh

Version:
11 lines (10 loc) 325 B
import * as https from "https"; interface IResolvedValues { valid: boolean; validFrom: string; validTo: string; daysRemaining: number; validFor: string[]; } declare const sslChecker: (host: string, options?: Partial<https.RequestOptions>) => Promise<IResolvedValues>; export default sslChecker;