@sudowealth/schwab-api
Version:
TypeScript client for Charles Schwab API with OAuth support, market data, trading functionality, and complete type safety
10 lines (9 loc) • 440 B
TypeScript
import { type EndpointMetadata } from '../../core/http.js';
import { ErrorResponseSchema } from '../../errors.js';
import { GetMoversPathParams, GetMoversQueryParams, GetMoversResponse } from './schema.js';
export declare const getMoversMeta: EndpointMetadata<GetMoversPathParams, // Path Params
GetMoversQueryParams, // Query Params
never, // No Request Body
GetMoversResponse, // Response Body
'GET', // HTTP Method
ErrorResponseSchema>;