18 lines
373 B
TypeScript
Raw Normal View History

interface EntityManager {
assocCreatorRoles(): any;
find(): any;
findPage(): any;
2022-05-19 14:47:23 +02:00
findWithRelationCountsPage(): any;
count(): any;
findOne(): any;
findOneWithCreatorRoles(): any;
create(): any;
update(): any;
delete(): any;
deleteMany(): any;
publish(): any;
unpublish(): any;
}
2023-02-20 11:46:18 +01:00
export default function (opts: { strapi: Strapi }): EntityManager;