UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

10 lines (9 loc) 418 B
/// <reference types="react" /> import { CMSApi } from '../CMS.js'; import { Config } from '../Config.js'; export interface NextApi extends CMSApi { previews(): Promise<JSX.Element | null>; backendHandler(request: Request): Promise<Response>; previewHandler(request: Request): Promise<Response>; } export declare function createNextCMS<Definition extends Config>(config: Definition): Definition & NextApi;