UNPKG

@botonic/plugin-contentful

Version:

Botonic Plugin Contentful is one of the **[available](https://github.com/hubtype/botonic/tree/master/packages)** plugins for Botonic. **[Contentful](http://www.contentful.com)** is a CMS (Content Management System) which manages contents of a great variet

11 lines (10 loc) 397 B
import { Entry } from 'contentful'; import * as cms from '../../cms'; import { ContentWithNameFields } from '../delivery-utils'; export declare class SearchableByKeywordsDelivery { static fromEntry(entry: Entry<SearchableByKeywordsFields>): cms.SearchableByKeywords; } export interface SearchableByKeywordsFields extends ContentWithNameFields { keywords: string[]; priority: number; }