UNPKG

@sudowealth/schwab-api

Version:

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

9 lines (8 loc) 513 B
export * from './endpoints'; export * from './schema'; import { type EndpointFunction } from '../../core/endpoint-types'; import { type getTransactionByIdMeta, type getTransactionsMeta } from './endpoints'; export type GetTransactionsFunction = EndpointFunction<typeof getTransactionsMeta>; export declare const getTransactions: GetTransactionsFunction; export type GetTransactionByIdFunction = EndpointFunction<typeof getTransactionByIdMeta>; export declare const getTransactionById: GetTransactionByIdFunction;