Backstage
    Preparing search index...

    A file object, representing a file at a commit in a repository

    interface CommitFile {
        attributes?: Models.CommitFileAttributesEnum;
        commit?: Commit;
        escaped_path?: string;
        path?: string;
        type: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    commit?: Commit
    escaped_path?: string

    The escaped version of the path as it appears in a diff. If the path does not require escaping this will be the same as path.

    path?: string

    The path in the repository

    type: string