mirror of
https://github.com/immich-app/immich.git
synced 2025-06-23 15:34:03 -04:00
16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
export interface GitHubRelease {
|
|
id: number;
|
|
url: string;
|
|
tag_name: string;
|
|
name: string;
|
|
created_at: string;
|
|
published_at: string;
|
|
body: string;
|
|
}
|
|
|
|
export const IServerInfoRepository = 'IServerInfoRepository';
|
|
|
|
export interface IServerInfoRepository {
|
|
getGitHubRelease(): Promise<GitHubRelease>;
|
|
}
|