Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ReplaceContentEntry

import type { ReplaceContentEntry } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";

Information about a replacement content entry in the conflict of a merge or pull request operation.

interface ReplaceContentEntry {
content?: Uint8Array | string | null;
fileMode?: FileModeTypeEnum | null;
filePath: string;
replacementType: ReplacementTypeEnum;
}

§Properties

§
content?: Uint8Array | string | null
[src]

The base-64 encoded content to use when the replacement type is USE_NEW_CONTENT.

§
fileMode?: FileModeTypeEnum | null
[src]

The file mode to apply during conflict resoltion.

§
filePath: string
[src]

The path of the conflicting file.

§
replacementType: ReplacementTypeEnum
[src]

The replacement type to use when determining how to resolve the conflict.