diff --git a/providers/types.ts b/providers/types.ts index 21bc866..7a503b8 100644 --- a/providers/types.ts +++ b/providers/types.ts @@ -1,6 +1,11 @@ import { AxiosStatic } from "axios"; import * as cheerio from "cheerio"; -import { Content } from "../zustand/contentStore"; + +// Content type for providers (replaces zustand import) +export interface Content { + provider: string; + [key: string]: any; +} // getPosts export interface Post {