mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:29:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			507 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			507 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export interface GitHubRelease {
 | 
						|
  id: number;
 | 
						|
  url: string;
 | 
						|
  tag_name: string;
 | 
						|
  name: string;
 | 
						|
  created_at: string;
 | 
						|
  published_at: string;
 | 
						|
  body: string;
 | 
						|
}
 | 
						|
 | 
						|
export interface ServerBuildVersions {
 | 
						|
  nodejs: string;
 | 
						|
  ffmpeg: string;
 | 
						|
  libvips: string;
 | 
						|
  exiftool: string;
 | 
						|
  imagemagick: string;
 | 
						|
}
 | 
						|
 | 
						|
export const IServerInfoRepository = 'IServerInfoRepository';
 | 
						|
 | 
						|
export interface IServerInfoRepository {
 | 
						|
  getGitHubRelease(): Promise<GitHubRelease>;
 | 
						|
  getBuildVersions(): Promise<ServerBuildVersions>;
 | 
						|
}
 |