declare interface impl

This commit is contained in:
softprops 2019-09-17 19:33:38 +09:00
parent ca93e708e3
commit 916d072e3d

View file

@ -39,7 +39,7 @@ export interface Releaser {
}): AsyncIterableIterator<{ data: Release[] }>;
}
export class GitHubReleaser {
export class GitHubReleaser implements Releaser {
github: GitHub;
constructor(github: GitHub) {
this.github = github;