UNPKG

vibe-tools

Version:
16 lines (15 loc) 452 B
import type { CommandOptions } from '../../types'; export interface GithubOptions extends CommandOptions { repo?: string; fromGithub?: string; reviewOnly?: boolean; discussionOnly?: boolean; metadataOnly?: boolean; noLinks?: boolean; hideResolved?: boolean; } export interface RepoContext { owner: string; repo: string; } export declare function getRepoContext(options?: GithubOptions): Promise<RepoContext | null>;