@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) • 438 B
TypeScript
import { type EndpointMetadata } from '../../core/http.js';
import { ErrorResponseSchema } from '../../errors.js';
import { GetPriceHistoryQueryParams, GetPriceHistoryResponse } from './schema.js';
export declare const getPriceHistoryMeta: EndpointMetadata<never, // No Path Params
GetPriceHistoryQueryParams, // Query Params
never, // No Request Body
GetPriceHistoryResponse, // Response Body
'GET', // HTTP Method
ErrorResponseSchema>;