@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) • 518 B
TypeScript
export * from './schema';
export * from './endpoints';
import { type EndpointFunction } from '../../core/endpoint-types';
import { type getInstrumentByCusipMeta, type getInstrumentsMeta } from './endpoints';
export type GetInstrumentsFunction = EndpointFunction<typeof getInstrumentsMeta>;
export declare const getInstruments: GetInstrumentsFunction;
export type GetInstrumentByCusipFunction = EndpointFunction<typeof getInstrumentByCusipMeta>;
export declare const getInstrumentByCusip: GetInstrumentByCusipFunction;