@nullcc/diff2html-cli
Version:
Fast Diff to colorized HTML
29 lines • 883 B
TypeScript
import { StyleType, SummaryType, LineMatchingType, FormatType, InputType, OutputType, DiffyType } from "./types";
export interface Argv {
style: StyleType;
synchronisedScroll: boolean;
summary: SummaryType;
matching: LineMatchingType;
matchWordsThreshold: number;
matchingMaxComparisons: number;
format: FormatType;
input: InputType;
output: OutputType;
diffy?: DiffyType;
file?: string;
htmlWrapperTemplate?: string;
ignore?: string[];
extraArguments: string[];
coverage: string;
coverageFilePatterns: string;
workspace: string;
coverageReporter: string;
customFileNameGeneratorFile: string;
displayMode: string;
strict: boolean;
saveDebug: boolean;
caseInsensitive: boolean;
}
export declare function setup(): Argv;
export declare function help(): void;
//# sourceMappingURL=yargs.d.ts.map