mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 01:47:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			373 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			373 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| interface EntityManager {
 | |
|   assocCreatorRoles(): any;
 | |
|   find(): any;
 | |
|   findPage(): any;
 | |
|   findWithRelationCountsPage(): 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;
 | 
