Model Health SDK Client
TypeScript/JavaScript client for the Model Health biomechanics SDK. Provides a clean, typed API over the WASM bindings.
import { ModelHealthClient } from '@modelhealth/modelhealth';const client = new ModelHealthClient({ apiKey: 'your-api-key' });await client.init();const sessions = await client.sessionList(); Copy
import { ModelHealthClient } from '@modelhealth/modelhealth';const client = new ModelHealthClient({ apiKey: 'your-api-key' });await client.init();const sessions = await client.sessionList();
Model Health SDK Client
TypeScript/JavaScript client for the Model Health biomechanics SDK. Provides a clean, typed API over the WASM bindings.
Example: Basic usage