mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			224 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			224 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { SearchResult } from '@app/domain';
 | 
						|
 | 
						|
export const searchStub = {
 | 
						|
  emptyResults: Object.freeze<SearchResult<any>>({
 | 
						|
    total: 0,
 | 
						|
    count: 0,
 | 
						|
    page: 1,
 | 
						|
    items: [],
 | 
						|
    facets: [],
 | 
						|
    distances: [],
 | 
						|
  }),
 | 
						|
};
 |