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
21 lines • 582 B
TypeScript
/**
* Data Layer (SDK) - Phase 2 Implementation
* GraphQL-first SDK with automatic cache tagging for Next.js
*/
import type { StrapiSDKConfig, StrapiSDK } from './types';
/**
* Creates a configured Strapi SDK instance
*
* @param config - SDK configuration options
* @returns Configured SDK instance
*
* @example
* ```typescript
* const strapiClient = createStrapiSDK({
* url: process.env.STRAPI_URL,
* token: process.env.STRAPI_TOKEN,
* });
* ```
*/
export declare function createStrapiSDK(config: StrapiSDKConfig): StrapiSDK;
//# sourceMappingURL=index.d.ts.map