Server SDKs
Build AI agents, control calls, send messages, and more
Check whether a dot-notation path exists in the loaded configuration.
Dot-separated key path to check (e.g., "server.port").
"server.port"
boolean — true if the path resolves to a defined value.
boolean
true
1import { ConfigLoader } from '@signalwire/sdk';23const config = new ConfigLoader('./config.json');45if (config.has('security.ssl_enabled')) {6 console.log('SSL setting found');7}