import type { RetrievePost, UpdatePost, WebsiteUrlToStoreLocation } from '@jackdbd/micropub'; import type { Syndicator } from '../schemas/syndicator.js'; import type { Log } from './log.js'; export interface FeedEntry { id: string; content?: string; published?: string; summary?: string; updated?: string; } export interface Options { entry: FeedEntry; log?: Log; logPrefix?: string; me: string; retrievePost: RetrievePost; syndicatorMap: { [uid: string]: Syndicator; }; /** * Default syndication targets (as list of uid) */ targets?: string[]; updatePost: UpdatePost; urlToLocation: WebsiteUrlToStoreLocation; } export declare const processFeedEntry: (options: Options) => Promise<{ failures: string[]; successes: string[]; }>; //# sourceMappingURL=process-feed-entry.d.ts.map