Outlook_Addin_LLM/node_modules/office-addin-dev-certs/lib/httpsServerOptions.d.ts

9 lines
206 B
TypeScript
Raw Normal View History

/// <reference types="node" />
interface IHttpsServerOptions {
ca: Buffer;
cert: Buffer;
key: Buffer;
}
export declare function getHttpsServerOptions(): Promise<IHttpsServerOptions>;
export {};