TLSProfiles.d.ts 384 B

123456789101112131415
  1. declare const TLSProfiles: {
  2. /**
  3. * TLS settings for Redis.com Cloud Fixed plan. Updated on 2021-10-06.
  4. */
  5. readonly RedisCloudFixed: {
  6. readonly ca: string;
  7. };
  8. /**
  9. * TLS settings for Redis.com Cloud Flexible plan. Updated on 2021-10-06.
  10. */
  11. readonly RedisCloudFlexible: {
  12. readonly ca: string;
  13. };
  14. };
  15. export default TLSProfiles;