UNPKG

vibe-tools

Version:
11 lines (10 loc) 317 B
import type { CommandOptions } from '../../types'; export interface GithubOptions extends CommandOptions { repo?: string; fromGithub?: string; } export interface RepoContext { owner: string; repo: string; } export declare function getRepoContext(options?: GithubOptions): Promise<RepoContext | null>;