@localazy/strapi-plugin
Version:
The official Strapi Plugin by Localazy.
10 lines (9 loc) • 370 B
TypeScript
/**
* See get-full-populate-object.ts for more details
*/
import type { UID } from '@strapi/strapi';
export type FullPopulateObject = {
populate: any;
} | boolean | undefined;
declare const getFullPopulateLocalazyUploadObject: (modelUid: UID.ContentType, maxDepth?: number, ignore?: string[]) => FullPopulateObject;
export { getFullPopulateLocalazyUploadObject };