UNPKG

@botonic/plugin-contentful

Version:

## What Does This Plugin Do?

19 lines (15 loc) 412 B
import { Locale } from '../nlp' import { ContentType } from './cms' export class LocaleInfo { constructor( readonly code: Locale, readonly name: string, readonly fallback: Locale | undefined, readonly isDefault: boolean ) {} } export interface CmsInfo { contentTypes(): Promise<ContentType[]> defaultLocale(): Promise<LocaleInfo> locales(): Promise<{ [code: string]: LocaleInfo }> }