UNPKG

@yash101/schwab-api-client

Version:

A TypeScript client library for interacting with the Charles Schwab Brokerage APIs.

6 lines 752 B
import { AuthTokens } from "./auth/tokens"; import { APIOptions } from "./apioptions"; import { GetTransactionForAccountByTransactionIdRequest, GetTransactionForAccountByTransactionIdResponse, GetTransactionsForAccountRequest, GetTransactionsForAccountResponse } from "./api-types/transactions.types"; export declare function getTransactionsForAccount(request: GetTransactionsForAccountRequest, token: AuthTokens, apiOptions: APIOptions): Promise<GetTransactionsForAccountResponse>; export declare function getTransactionForAccountByTransactionId(request: GetTransactionForAccountByTransactionIdRequest, token: AuthTokens, apiOptions: APIOptions): Promise<GetTransactionForAccountByTransactionIdResponse>; //# sourceMappingURL=transactions.api.d.ts.map