Feature: List releases (#52)

* feat: list releases

* feat: find releases and count
This commit is contained in:
Ludvig Lundgren 2021-12-25 21:44:52 +01:00 committed by GitHub
parent c83ebdc1a4
commit b75c40f6a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 506 additions and 20 deletions

View file

@ -188,6 +188,7 @@ export interface Release {
export interface ReleaseFindResponse {
data: Release[];
next_cursor: number;
count: number;
}
export interface ReleaseStats {