import type { Asset, AssetCollection, Entry, EntryCollection } from '../contentful/types'; export interface ContentfulDataSource { getAsset(id: string): Promise | Asset | null; getAssets(query?: any): Promise | AssetCollection; getEntry>(id: string): Promise | null> | Entry | null; getEntries>(query?: any): Promise> | EntryCollection; }