bitbucket-repository-provider
Version:
repository provider for bitbucket
23 lines (21 loc) • 392 B
JavaScript
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
);
}
}