frpc-desktop/types/github.d.ts
刘嘉伟 8d56faeb80 🚧 v2
2025-02-21 18:30:13 +08:00

18 lines
326 B
TypeScript

interface GithubAsset {
id: number;
name: string;
content_type: string;
download_count: number;
size: number;
browser_download_url: string;
created_at: string;
updated_at: string;
}
interface GithubRelease {
id: number;
name: string;
created_at: string;
published_at: string;
assets: GithubAsset[]
}