UNPKG

@localazy/strapi-plugin

Version:

The official Strapi Plugin by Localazy.

17 lines (16 loc) 672 B
import { Core } from '@strapi/strapi'; import { PluginSettings } from '../db/model/plugin-settings'; import { ContentTransferSetup } from '../models/plugin/content-transfer-setup'; declare const PluginSettingsService: ({ strapi }: { strapi: Core.Strapi; }) => { getContentTransferSetup(): Promise<ContentTransferSetup>; updateContentTransferSetup(setup: any): Promise<{ has_setup: boolean; setup: any; }>; getPluginSettings(): Promise<PluginSettings>; updatePluginSettings(settings: any): Promise<any>; }; export type PluginSettingsServiceReturnType = ReturnType<typeof PluginSettingsService>; export default PluginSettingsService;