@progress/sitefinity-nextjs-sdk
Version:
Provides OOB widgets developed using the Next.js framework, which includes an abstraction layer for Sitefinity communication. Additionally, it offers an expanded API, typings, and tools for further development and integration.
23 lines (22 loc) • 518 B
TypeScript
export interface RenderSectionProps<T = any> {
isLoading: boolean;
sectionData?: T;
cssClassName?: string;
}
export interface RelatedItemDto {
id: string;
providerName: string;
title: string;
url: string;
type: string;
params: Record<string, string>;
}
export interface ContentListItem {
title: string;
content: string;
url: string;
type: string;
id: string;
image?: RelatedItemDto;
}
export declare const modifySfUrl: (text?: string) => string | undefined;