@sudowealth/schwab-api
Version:
TypeScript client for Charles Schwab API with OAuth support, market data, trading functionality, and complete type safety
20 lines (19 loc) • 602 B
JavaScript
/**
* @internal
*
* This module is for internal use only. Consumers should use the public API
* exposed through the `createApiClient` function instead of importing directly
* from this module.
*
* Example:
* ```
* import { createApiClient } from '@sudowealth/schwab-api'
* const client = createApiClient({ config: {}, auth: '' })
* // Use client.trader.accounts etc.
* ```
*/
export * as accounts from './accounts';
export * as orders from './orders';
export * as transactions from './transactions';
export * as userPreference from './user-preference';
export * as shared from './shared';