UNPKG

repository-provider

Version:

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

14 lines (11 loc) 267 B
import { state_attribute_writable } from "pacc"; import { OwnedObject } from "./owned-object.mjs"; /** */ export class Milestone extends OwnedObject { static attributes = { ...super.attributes, state: state_attribute_writable }; async *issues() {} }