UNPKG

@sudowealth/schwab-api

Version:

TypeScript client for Charles Schwab API with OAuth support, market data, trading functionality, and complete type safety

11 lines (10 loc) 676 B
export * from './schema'; export * from './endpoints'; import { type EndpointFunction } from '../../core/endpoint-types'; import { type getAccountsMeta, type getAccountNumbersMeta, type getAccountByNumberMeta } from './endpoints'; export type GetAccountsFunction = EndpointFunction<typeof getAccountsMeta>; export declare const getAccounts: GetAccountsFunction; export type GetAccountByNumberFunction = EndpointFunction<typeof getAccountByNumberMeta>; export declare const getAccountByNumber: GetAccountByNumberFunction; export type GetAccountNumbersFunction = EndpointFunction<typeof getAccountNumbersMeta>; export declare const getAccountNumbers: GetAccountNumbersFunction;