Update scripts

This commit is contained in:
freearhey 2025-02-22 12:54:00 +03:00
parent 96cb43c398
commit 9b4c7325ee
6 changed files with 63 additions and 29 deletions

View file

@ -1,15 +1,15 @@
import { Dictionary } from '@freearhey/core'
import { IssueData } from '../core'
type IssueProps = {
number: number
labels: string[]
data: Dictionary
data: IssueData
}
export class Issue {
number: number
labels: string[]
data: Dictionary
data: IssueData
constructor({ number, labels, data }: IssueProps) {
this.number = number