@localazy/strapi-plugin
Version:
The official Strapi Plugin by Localazy.
17 lines (16 loc) • 606 B
TypeScript
declare class PluginSettingsServiceHelper {
private PluginSettingsService;
private pluginSettings;
constructor();
setup(): Promise<void>;
shouldAllowAutomatedUpload(): boolean;
shouldAllowAutomatedCreatedTrigger(): boolean;
shouldAllowAutomatedUpdatedTrigger(): boolean;
getAutomatedUploadTriggers(): string[];
shouldAllowDeprecateOnDeletion(): boolean;
shouldAllowWebhookDownloadProcess(): boolean;
getWebhookAuthorId(): string | null;
getWebhookLanguagesCodes(): string[];
getUiLanguagesCodes(): string[];
}
export default PluginSettingsServiceHelper;