UNPKG

@botonic/plugin-contentful

Version:

## What Does This Plugin Do?

15 lines (14 loc) 528 B
import * as contentful from 'contentful'; import { ContentType } from '../cms'; import { CmsInfo, LocaleInfo } from '../cms/cms-info'; import { ContentfulOptions } from '../plugin'; export declare class ContentfulInfo implements CmsInfo { readonly options: ContentfulOptions; client: contentful.ContentfulClientApi; constructor(options: ContentfulOptions); contentTypes(): Promise<ContentType[]>; defaultLocale(): Promise<LocaleInfo>; locales(): Promise<{ [locale: string]: LocaleInfo; }>; }