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

17 lines 459 B
export const PRIORITY_MIN = 0; export const PRIORITY_MAX = 100; export const SCORE_MIN = 0; export const SCORE_MAX = 1; export class SearchableByKeywords { constructor(name, keywords = [], priority = PRIORITY_MAX) { this.name = name; this.keywords = keywords; this.priority = priority; } } export class SearchableBy { constructor(keywords = []) { this.keywords = keywords; } } //# sourceMappingURL=fields.js.map