UNPKG

@sudowealth/schwab-api

Version:

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

6 lines (5 loc) 612 B
import { type EndpointMetadata } from '../../core/http'; import { ErrorResponseSchema } from '../../errors'; import { GetTransactionsPathParams, GetTransactionsQueryParams, GetTransactionsResponse, GetTransactionByIdPathParams, GetTransactionByIdResponse } from './schema'; export declare const getTransactionsMeta: EndpointMetadata<GetTransactionsPathParams, GetTransactionsQueryParams, never, GetTransactionsResponse, 'GET', ErrorResponseSchema>; export declare const getTransactionByIdMeta: EndpointMetadata<GetTransactionByIdPathParams, never, never, GetTransactionByIdResponse, 'GET', ErrorResponseSchema>;