Initial commit
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
/// <reference types="node" />
|
||||
import { SecureServerOptions } from 'http2';
|
||||
export interface KeyCertPair {
|
||||
private_key: Buffer;
|
||||
cert_chain: Buffer;
|
||||
}
|
||||
export declare abstract class ServerCredentials {
|
||||
abstract _isSecure(): boolean;
|
||||
abstract _getSettings(): SecureServerOptions | null;
|
||||
static createInsecure(): ServerCredentials;
|
||||
static createSsl(rootCerts: Buffer | null, keyCertPairs: KeyCertPair[], checkClientCertificate?: boolean): ServerCredentials;
|
||||
}
|
||||
Reference in New Issue
Block a user