UNPKG

bitbucket-repository-provider

Version:
23 lines (21 loc) 392 B
import { RepositoryGroup } from "repository-provider"; /** * Project of a bitbucket repository */ export class BitbucketProject extends RepositoryGroup { /** * options */ static get defaultOptions() { return Object.assign( { /** * api url. * @return {string} */ api: undefined }, super.defaultOptions ); } }