2021-09-24 09:04:44 +02:00

18 lines
368 B
TypeScript

interface EntityManager {
assocCreatorRoles(): any;
find(): any;
findPage(): any;
findWithRelationCounts(): any;
count(): any;
findOne(): any;
findOneWithCreatorRoles(): any;
create(): any;
update(): any;
delete(): any;
deleteMany(): any;
publish(): any;
unpublish(): any;
}
export default function(opts: { strapi: Strapi }): EntityManager;