UNPKG

@sudowealth/schwab-api

Version:

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

16 lines (15 loc) 740 B
import { type EndpointMetadata } from '../../core/http'; import { ErrorResponseSchema } from '../../errors'; import { GetInstrumentsQueryParams, GetInstrumentsResponse, GetInstrumentByCusipPathParams, GetInstrumentByCusipResponse } from './schema'; export declare const getInstrumentsMeta: EndpointMetadata<never, // No Path Params GetInstrumentsQueryParams, // Query Params never, // No Request Body GetInstrumentsResponse, // Response Body 'GET', // HTTP Method ErrorResponseSchema>; export declare const getInstrumentByCusipMeta: EndpointMetadata<GetInstrumentByCusipPathParams, // Path Params never, // No Query Params never, // No Request Body GetInstrumentByCusipResponse, // Response Body 'GET', // HTTP Method ErrorResponseSchema>;