ElectronRequest
Unofficial
A certificate verification request passed to a certificate verify proc.
Import:
import type { ElectronRequest } from '@obsidian-typings/obsidian-public-latest';Signature:
export interface ElectronRequestProperties
| Property | Type | Description | |
|---|---|---|---|
| certificate | ElectronCertificate | The certificate presented by the server. | |
| errorCode | number | The error code. | |
| hostname | string | The host name being verified. | |
| isIssuedByKnownRoot | boolean | Whether Chromium recognises the root CA as a standard root. | |
| validatedCertificate | ElectronCertificate | The certificate as validated by Chromium. | |
| verificationResult | string | OK if the certificate is trusted, otherwise an error like CERT_REVOKED. |