UNPKG

@sudowealth/schwab-api

Version:

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

7 lines (6 loc) 765 B
import { type EndpointMetadata } from '../../core/http'; import { ErrorResponseSchema } from '../../errors'; import { GetAccountsQueryParams, GetAccountsResponse, GetAccountByNumberPathParams, GetAccountByNumberQueryParams, GetAccountByNumberResponse, GetAccountNumbersResponse } from './schema'; export declare const getAccountsMeta: EndpointMetadata<never, GetAccountsQueryParams, never, GetAccountsResponse, 'GET', ErrorResponseSchema>; export declare const getAccountByNumberMeta: EndpointMetadata<GetAccountByNumberPathParams, GetAccountByNumberQueryParams, never, GetAccountByNumberResponse, 'GET', ErrorResponseSchema>; export declare const getAccountNumbersMeta: EndpointMetadata<never, never, never, GetAccountNumbersResponse, 'GET', ErrorResponseSchema>;