Files
bpi-stock-price-scraper/interfaces.ts
T
Lino Silva 730353baa7
Build and publish / build (push) Successful in 44s
feat: Financial Times tracking
2026-05-13 00:10:00 +01:00

16 lines
234 B
TypeScript

export enum ProviderType {
BPI = "bpi",
DECO = "deco",
FT = "ft",
}
export interface Provider {
type: ProviderType;
baseUrl: string;
}
export interface AvailableSymbol {
mappedSymbol: string;
provider: ProviderType;
}