Update scripts

This commit is contained in:
freearhey
2023-09-17 04:08:50 +03:00
parent 8a90f4cc6a
commit c019453f76
16 changed files with 248 additions and 231 deletions

16
scripts/models/issue.ts Normal file
View File

@@ -0,0 +1,16 @@
import { Dictionary } from '../core'
type IssueProps = {
number: number
data: Dictionary
}
export class Issue {
number: number
data: Dictionary
constructor({ number, data }: IssueProps) {
this.number = number
this.data = data
}
}