UNPKG

office-addin-dev-certs

Version:

For managing certificates when developing Office Add-ins.

9 lines (8 loc) 281 B
/// <reference types="node" /> interface IHttpsServerOptions { ca: Buffer; cert: Buffer; key: Buffer; } export declare function getHttpsServerOptions(daysUntilCertificateExpires?: number, domains?: string[], machine?: boolean): Promise<IHttpsServerOptions>; export {};