UNPKG

repository-provider

Version:

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

16 lines (13 loc) 288 B
import { OwnedObject } from "./owned-object.mjs"; import { state_attribute } from "./attributes.mjs"; /** */ export class Milestone extends OwnedObject { static get attributes() { return { ...super.attributes, state: state_attribute }; } async *issues() {} }