strapi-nextgen-framework
Version:
Production-ready, type-safe framework bridging Strapi v4 CMS and Next.js 14+ App Router with automatic cache management, Error Boundaries, and SEO optimization
18 lines • 917 B
TypeScript
/**
* Strapi-NextGen Framework
* A high-performance, type-safe framework bridging Strapi CMS and Next.js
*
* @packageDocumentation
*/
export { createStrapiSDK } from './sdk';
export { generateCacheTag, parseCacheTag } from './sdk/cache-tags';
export type { StrapiSDKConfig, StrapiSDK } from './sdk/types';
export { StrapiRenderer } from './renderer';
export type { StrapiRendererProps, ComponentMap } from './renderer/types';
export { generateStrapiMetadata } from './helpers/metadata';
export { StrapiImage, type StrapiImageProps } from './components/StrapiImage';
export { createStrapiRevalidator, type RevalidatorConfig } from './revalidation';
export { createPreviewHandler, createExitPreviewHandler, type PreviewConfig } from './preview';
export type { StrapiResponse, StrapiEntity, StrapiCollection, StrapiMedia, } from './types';
export declare const VERSION = "0.1.0";
//# sourceMappingURL=index.d.ts.map