git-tweezers
Version:
Advanced git staging tool with hunk and line-level control
11 lines (10 loc) • 345 B
TypeScript
import { Command } from '@oclif/core';
export default class Install extends Command {
static description: string;
static examples: string[];
static flags: {
global: import("@oclif/core/interfaces").BooleanFlag<boolean>;
force: import("@oclif/core/interfaces").BooleanFlag<boolean>;
};
run(): Promise<void>;
}