UNPKG

@websolutespa/payload-plugin-bowl

Version:

Bowl PayloadCms plugin of the BOM Repository

15 lines (14 loc) 433 B
import { deepMerge } from '@websolutespa/payload-utils'; import { withRichText } from './withRichText'; export const withAbstract = (options = {})=>{ return withRichText(deepMerge({ name: 'abstract' }, options)); }; export const withAbstractRequired = (options = {})=>{ return withRichText(deepMerge({ name: 'abstract', required: true }, options)); }; //# sourceMappingURL=withAbstract.js.map