-
Notifications
You must be signed in to change notification settings - Fork 618
/
Copy pathindex.ts
26 lines (24 loc) · 859 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
/**
* This package is used to manage debug certificates for development servers.
*
* This package provides the following utilities:
*
* - `CertificateStore` to handle retrieving and saving a debug certificate.
*
* - `CertificateManager` is a utility class containing the following public methods:
*
* - `ensureCertificate` will find or optionally create a debug certificate and trust it.
*
* - `untrustCertificate` will untrust a debug certificate.
*
* @packageDocumentation
*/
export {
type ICertificate,
CertificateManager,
type ICertificateGenerationOptions,
DEFAULT_CERTIFICATE_SUBJECT_NAMES
} from './CertificateManager';
export { CertificateStore } from './CertificateStore';