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

UncommittedFileChange

import type { UncommittedFileChange } from "https://googleapis.deno.dev/v1/dataform:v1beta1.ts";

Represents the Git state of a file with uncommitted changes.

interface UncommittedFileChange {
path?: string;
state?:
| "STATE_UNSPECIFIED"
| "ADDED"
| "DELETED"
| "MODIFIED"
| "HAS_CONFLICTS";
}

§Properties

§
path?: string
[src]

The file's full path including filename, relative to the workspace root.

§
state?: "STATE_UNSPECIFIED" | "ADDED" | "DELETED" | "MODIFIED" | "HAS_CONFLICTS"
[src]

Indicates the status of the file.