UNPKG

siegel

Version:

Web application development ecosystem

8 lines (7 loc) 263 B
import type { ConfigObject } from '../types'; type Params = NonNullable<NonNullable<ConfigObject['server']>['ssl']>; declare const extractSSL: ({ keyPath, certPath }: Params) => { key: NonSharedBuffer; cert: NonSharedBuffer; }; export default extractSSL;