UNPKG

@botonic/plugin-contentful

Version:

## What Does This Plugin Do?

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; }