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

IsBinaryFile

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

Information about whether a file is binary or textual in a merge or pull request operation.

interface IsBinaryFile {
base?: boolean | null;
destination?: boolean | null;
source?: boolean | null;
}

§Properties

§
base?: boolean | null
[src]

The binary or non-binary status of a file in the base of a merge or pull request.

§
destination?: boolean | null
[src]

The binary or non-binary status of a file in the destination of a merge or pull request.

§
source?: boolean | null
[src]

The binary or non-binary status of file in the source of a merge or pull request.