UNPKG

@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) 538 B
export * from './schema'; export * from './endpoints'; import { type EndpointFunction } from '../../core/endpoint-types'; import { type getMarketHoursByMarketIdMeta, type getMarketHoursMeta } from './endpoints'; export type GetMarketHoursFunction = EndpointFunction<typeof getMarketHoursMeta>; export declare const getMarketHours: GetMarketHoursFunction; export type GetMarketHoursByMarketIdFunction = EndpointFunction<typeof getMarketHoursByMarketIdMeta>; export declare const getMarketHoursByMarketId: GetMarketHoursByMarketIdFunction;