UNPKG

@copytrade/broker-fyers

Version:
24 lines 898 B
/** * Fyers Broker Plugin * Self-registering broker plugin for the unified broker library */ import { BrokerRegistry, BrokerPlugin } from '@copytrade/unified-broker'; import { FyersServiceAdapter } from './FyersServiceAdapter'; /** * Initialize and register the Fyers broker plugin * Call this method explicitly to register the broker */ export declare function initializeFyersBroker(registry?: BrokerRegistry): void; export declare const fyersBrokerInfo: Omit<BrokerPlugin, "createInstance">; declare const _default: { initialize: typeof initializeFyersBroker; plugin: BrokerPlugin; createInstance: () => FyersServiceAdapter; info: Omit<BrokerPlugin, "createInstance">; }; export default _default; export { FyersServiceAdapter }; export { FyersSymbolFormatter } from './symbolFormatter'; export * from './types'; export * from './helpers'; //# sourceMappingURL=index.d.ts.map