getLocalProviders
client.environments.getLocalProviders(): Promise<ProviderData[]>
Retrieves the list of available local environment providers.
Discovers providers installed on the local machine that can be used to create new environments. Useful for populating provider selection UIs.
Parameters
No parameters.
Returns
Promise<ProviderData[]> — A promise that resolves to an array of descriptors
Example
import { CodeBoltClient } from '@codebolt/clientsdk';
const client = new CodeBoltClient();
const result = await client.environments.getLocalProviders();
console.log(result);