@webiny/api-page-builder-so-ddb-es
Version:
The DynamoDB + Elasticsearch storage operations Webiny Page Builder API.
13 lines (12 loc) • 456 B
TypeScript
import { SettingsStorageOperations } from "@webiny/api-page-builder/types";
import { Entity } from "@webiny/db-dynamodb/toolbox";
export interface CreateSettingsStorageOperationsParams {
entity: Entity;
}
export interface DbDefaultSettings {
data: {
appUrl: string;
deliveryUrl: string;
};
}
export declare const createSettingsStorageOperations: ({ entity }: CreateSettingsStorageOperationsParams) => SettingsStorageOperations;