github-repository-provider
Version:
repository provider for github
16 lines (15 loc) • 363 B
text/typescript
/**
* Represents github repo owner either
* - users
* - organization
*/
export class GithubOwner extends RepositoryGroup {
/**
* Map attributes between external and internal representation.
*/
static get attributeMapping(): {
site_admin: string;
};
get api(): string;
}
import { RepositoryGroup } from "repository-provider";