UNPKG

@webiny/api-headless-cms-ddb-es

Version:

DynamoDB and Elasticsearch storage operations plugin for Headless CMS API.

16 lines (15 loc) 444 B
import { ElasticsearchQuerySearchValuePlugins, ModelField } from "../types"; interface FieldPathFactoryParams { plugins: ElasticsearchQuerySearchValuePlugins; } interface FieldPathParams { field: ModelField; key: string; value: any; keyword: boolean; } export declare const createFieldPathFactory: ({ plugins }: FieldPathFactoryParams) => (params: FieldPathParams) => { basePath: string; path: string; }; export {};