From 916d072e3de5d787574671781f36d79976610b85 Mon Sep 17 00:00:00 2001 From: softprops Date: Tue, 17 Sep 2019 19:33:38 +0900 Subject: [PATCH] declare interface impl --- src/github.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.ts b/src/github.ts index 8e22e50..6134bc2 100644 --- a/src/github.ts +++ b/src/github.ts @@ -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;