UNPKG

node-datachannel

Version:

WebRTC For Node.js and Electron. libdatachannel node bindings.

18 lines (14 loc) 405 B
export default class RTCCertificate implements globalThis.RTCCertificate { #expires: number; #fingerprints: globalThis.RTCDtlsFingerprint[]; constructor() { this.#expires = null; this.#fingerprints = []; } get expires(): number { return this.#expires; } getFingerprints(): globalThis.RTCDtlsFingerprint[] { return this.#fingerprints; } }