 c177363a19
			
		
	
	c177363a19
	
	
	
		
			
			🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			236 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			236 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| type Promisable<T> = T | Promise<T>;
 | |
| 
 | |
| export type Callback = (
 | |
| 	directory: string,
 | |
| 	files: string[],
 | |
| ) => Promisable<string | false | void>;
 | |
| 
 | |
| export default function (
 | |
| 	directory: string,
 | |
| 	callback: Callback,
 | |
| ): Promise<string | void>;
 |