mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01: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>;
|
||
|
}
|