Type alias GetConfigParams<T>

GetConfigParams<T>: {
    dir: string;
    fs: FsClient;
    path: T;
    gitdir?: string;
}

Type Parameters

  • T

Type declaration

  • dir: string

    The working tree directory path.

  • fs: FsClient

    A file system implementation.

  • path: T

    The key of the git config entry.

  • Optional gitdir?: string

    The git directory path (default: join(dir, '.git').

Generated using TypeDoc