@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) • 762 B
TypeScript
import { type EndpointMetadata } from '../../core/http';
import { ErrorResponseSchema } from '../../errors';
import { GetOptionChainQueryParams, GetOptionChainResponse, GetOptionExpirationChainQueryParams, GetOptionExpirationChainResponse } from './schema';
export declare const getOptionChainMeta: EndpointMetadata<never, // No Path Params
GetOptionChainQueryParams, // Query Params
never, // No Request Body
GetOptionChainResponse, // Response Body
'GET', // HTTP Method
ErrorResponseSchema>;
export declare const getOptionExpirationChainMeta: EndpointMetadata<never, // No Path Params
GetOptionExpirationChainQueryParams, // Query Params
never, // No Request Body
GetOptionExpirationChainResponse, // Response Body
'GET', // HTTP Method
ErrorResponseSchema>;