@appsemble/utils
Version:
Utility functions used in Appsemble internally
16 lines • 446 B
JavaScript
export const SSLSecret = {
type: 'object',
additionalProperties: false,
description: 'The SSL secret of an app.',
properties: {
certificate: {
type: 'string',
description: 'The public SSL certificate chain in PEM format.',
},
key: {
type: 'string',
description: 'The SSL private key in PEM format.',
},
},
};
//# sourceMappingURL=SSLSecret.js.map