mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:17:11 -05:00 
			
		
		
		
	* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
		
			
				
	
	
		
			9 lines
		
	
	
		
			181 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			181 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export * from './repositories';
 | 
						|
export * from './fixtures';
 | 
						|
 | 
						|
export async function asyncTick(steps: number) {
 | 
						|
  for (let i = 0; i < steps; i++) {
 | 
						|
    await Promise.resolve();
 | 
						|
  }
 | 
						|
}
 |