forked from Cutlery/immich
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>;
|
|
}
|