UNPKG

github-repository-distributor

Version:
15 lines (14 loc) 614 B
import type { RestEndpointMethodTypes } from '@octokit/rest'; export type { Root, Content, Paragraph, ListItem, Link } from 'mdast'; export type { Dictionary } from 'lodash'; export declare type Repository = RestEndpointMethodTypes['repos']['listForUser']['response']['data'][number] | RestEndpointMethodTypes['repos']['listForAuthenticatedUser']['response']['data'][number]; export interface UserDefinedOptions { token: string; username: string; title: string; motto: boolean; filepath: string; includeFork: boolean; includeArchived: boolean; onlyPrivate: boolean; }