UNPKG

no-migration

Version:

CLI tool to manage migration changes and user changes separately for React Native miniapp projects

21 lines 473 B
export interface FileChange { path: string; status: 'modified' | 'added' | 'deleted'; content?: string; diff?: string; } export interface ChangesSnapshot { timestamp: string; files: Record<string, FileChange>; } export interface CommitOptions { message?: string; amend?: boolean; noEdit?: boolean; } export interface GitStatus { staged: string[]; unstaged: string[]; untracked: string[]; } //# sourceMappingURL=types.d.ts.map