Server SDKs
Build AI agents, control calls, send messages, and more
Return a shallow copy of the entire top-level configuration object.
None.
Record<string, unknown> — A copy of the top-level config data.
Record<string, unknown>
1import { ConfigLoader } from '@signalwire/sdk';23const config = new ConfigLoader('./config.json');45const allConfig = config.getAll();6console.log(JSON.stringify(allConfig, null, 2));