UNPKG

repository-provider

Version:

abstract interface to git repository providers like github, bitbucket and gitlab

12 lines (10 loc) 195 B
import { OwnedObject } from "./owned-object.mjs"; /** * */ export class Issue extends OwnedObject { async *labels() {} async *assignees() {} async assignee() {} async milestone() {} }