6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
import { PeerCertificate } from "tls";
|
|
export interface AuthContext {
|
|
transportSecurityType?: string;
|
|
sslPeerCertificate?: PeerCertificate;
|
|
}
|