mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-11-04 03:17:00 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			192 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			192 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const DownloadStatus = {
 | 
						|
  PENDING: 0,
 | 
						|
  READY: 1,
 | 
						|
  EXPIRED: 2,
 | 
						|
  FAILED: 3
 | 
						|
}
 | 
						|
 | 
						|
const Constants = {
 | 
						|
  DownloadStatus
 | 
						|
}
 | 
						|
 | 
						|
export default ({ app }, inject) => {
 | 
						|
  inject('constants', Constants)
 | 
						|
} |