@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) • 749 B
TypeScript
import { type EndpointMetadata } from '../../core/http.js';
import { ErrorResponseSchema } from '../../errors.js';
import { GetInstrumentsQueryParams, GetInstrumentsResponse, GetInstrumentByCusipPathParams, GetInstrumentByCusipResponse } from './schema.js';
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>;