add test for issue option (#20)

This commit is contained in:
Naoki Oketani
2019-12-09 21:31:55 +09:00
committed by GitHub
parent 4b8e261c55
commit be0cdcbe10
5 changed files with 171 additions and 3137 deletions

6
src/interface.ts Normal file
View File

@@ -0,0 +1,6 @@
export interface IssueOption {
title: string
body: string
assignees?: string[]
labels?: string[]
}