@agility/nextjs
Version:
Agility CMS support for NextJS 16 and Next Image
25 lines (24 loc) • 789 B
TypeScript
export function renderHTML(html: any): {
__html: any;
};
export function cleanHTML(html: any): any;
export function asyncForEach(array: any, callback: any): Promise<void>;
export function expandContentItem({ agility, contentItem, languageCode, depth }: {
agility: any;
contentItem: any;
languageCode: any;
depth?: number;
}): Promise<any>;
export function expandContentList({ agility, contentItems, languageCode, depth }: {
agility: any;
contentItems: any;
languageCode: any;
depth: any;
}): Promise<void>;
export function expandLinkedList({ agility, contentItem, languageCode, fieldName, sortIDField }: {
agility: any;
contentItem: any;
languageCode: any;
fieldName: any;
sortIDField: any;
}): Promise<any>;