UNPKG

@configurator/ravendb

Version:
13 lines (12 loc) 348 B
/// <reference types="node" /> import { CertificateType } from "./Certificate"; export interface IAuthOptions { type?: CertificateType; certificate?: string | Buffer; password?: string; ca?: string | Buffer; } export interface IStoreAuthOptions extends IAuthOptions { } export interface IRequestAuthOptions extends IAuthOptions { }