8 lines
594 B
TypeScript
8 lines
594 B
TypeScript
// ── API module barrel ─────────────────────────────────────────────────────
|
|
// Drop-in replacement for the old $lib/api.ts flat file.
|
|
// Existing imports from '$lib/api.js' continue to work via api.ts re-export.
|
|
|
|
export { screenTickers, fetchCatalysts, analyzeTickers } from './screener.js';
|
|
export { fetchPortfolio, addHolding, removeHolding, fetchMarketContext } from './finance.js';
|
|
export { fetchCalls, fetchCall, createCall, deleteCall, fetchCallsCalendar } from './calls.js';
|