Server SDKs
Build AI agents, control calls, send messages, and more
Check whether SSL is fully configured: enabled with both certificate and key files present on disk.
None.
boolean — true if SSL is enabled and both cert and key files exist on disk.
boolean
true
1import { SslConfig } from '@signalwire/sdk';23const ssl = new SslConfig();4if (ssl.isConfigured()) {5 console.log('SSL is ready');6}