@sudowealth/schwab-api
Version:
TypeScript client for Charles Schwab API with OAuth support, market data, trading functionality, and complete type safety
9 lines (8 loc) • 550 B
TypeScript
export * from './schema.js';
export * from './endpoints.js';
import { type EndpointFunction } from '../../core/endpoint-types.js';
import { type getMarketHoursByMarketIdMeta, type getMarketHoursMeta } from './endpoints.js';
export type GetMarketHoursFunction = EndpointFunction<typeof getMarketHoursMeta>;
export declare const getMarketHours: GetMarketHoursFunction;
export type GetMarketHoursByMarketIdFunction = EndpointFunction<typeof getMarketHoursByMarketIdMeta>;
export declare const getMarketHoursByMarketId: GetMarketHoursByMarketIdFunction;