@localazy/strapi-plugin
Version:
The official Strapi Plugin by Localazy.
10 lines (9 loc) • 677 B
TypeScript
import { Core, UID } from '@strapi/strapi';
declare const StrapiLocalazyI18nService: ({ strapi }: {
strapi: Core.Strapi;
}) => {
createEntry(uid: UID.ContentType, strapiContentTypesModels: any, translatedModel: any, baseEntry: any, isoStrapi: any): Promise<import("@strapi/types/dist/modules/documents").AnyDocument>;
updateEntry(uid: any, localizedDocumentId: string, strapiContentTypesModels: any, translatedModel: any, baseEntry: any, isoStrapi: any): Promise<import("@strapi/types/dist/modules/documents").AnyDocument>;
};
export type StrapiLocalazyI18nServiceReturnType = ReturnType<typeof StrapiLocalazyI18nService>;
export default StrapiLocalazyI18nService;