UNPKG

github-repository-provider

Version:
16 lines (15 loc) 363 B
/** * 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";