fleet/frontend/interfaces/config.js

20 lines
575 B
JavaScript
Raw Normal View History

import { PropTypes } from 'react';
export default PropTypes.shape({
authentication_method: PropTypes.string,
authentication_type: PropTypes.string,
configured: PropTypes.bool,
domain: PropTypes.string,
enable_ssl_tls: PropTypes.bool,
enable_start_tls: PropTypes.bool,
kolide_server_url: PropTypes.string,
org_logo_url: PropTypes.string,
org_name: PropTypes.string,
password: PropTypes.string,
port: PropTypes.number,
sender_address: PropTypes.string,
server: PropTypes.string,
user_name: PropTypes.string,
verify_sll_certs: PropTypes.bool,
});