From cfc7a37e6a991e144803c42679773c75b67fe6da Mon Sep 17 00:00:00 2001 From: himanshu8443 Date: Sat, 21 Jun 2025 16:15:45 +0530 Subject: [PATCH] refactor: replace zustand import with Content interface definition for providers --- providers/types.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 {