UNPKG

@nullcc/diff2html-cli

Version:
30 lines 1.16 kB
export declare type StyleType = "line" | "side"; export declare type SummaryType = "closed" | "open" | "hidden"; export declare type LineMatchingType = "lines" | "words" | "none"; export declare type FormatType = "html" | "json"; export declare type InputType = "file" | "command" | "stdin"; export declare type OutputType = "preview" | "stdout"; export declare type DiffyType = "browser" | "pbcopy" | "print"; export declare type CoverageReporterType = "auto" | "json" | "cobertura" | "jacoco" | "xccov"; export declare type DisplayMode = "standard" | "simplify"; export interface Configuration { synchronisedScroll: boolean; showFilesOpen: boolean; formatType: FormatType; outputDestinationType: OutputType; outputDestinationFile?: string; inputSource: InputType; diffyType?: DiffyType; htmlWrapperTemplate: string; ignore: string[]; coverage: string; coverageFilePatterns: string; workspace: string; coverageReporter: string; customFileNameGeneratorFile: string; displayMode: string; strict: boolean; saveDebug: boolean; caseInsensitive: boolean; } //# sourceMappingURL=types.d.ts.map