migrate to monorepo?
This commit is contained in:
17
packages/core/src/index.ts
Normal file
17
packages/core/src/index.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
// Export all scrapers
|
||||
export { default as fetchKijijiItems, slugify } from "./scrapers/kijiji";
|
||||
export type { KijijiListingDetails } from "./scrapers/kijiji";
|
||||
|
||||
export { default as fetchFacebookItems } from "./scrapers/facebook";
|
||||
export type { FacebookListingDetails } from "./scrapers/facebook";
|
||||
|
||||
export { default as fetchEbayItems } from "./scrapers/ebay";
|
||||
export type { EbayListingDetails } from "./scrapers/ebay";
|
||||
|
||||
// Export shared utilities
|
||||
export * from "./utils/http";
|
||||
export * from "./utils/delay";
|
||||
export * from "./utils/format";
|
||||
|
||||
// Export shared types
|
||||
export * from "./types/common";
|
||||
Reference in New Issue
Block a user