1.1.2 • Published 6 months ago

@types/is-git-clean v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/is-git-clean

Summary

This package contains type definitions for is-git-clean (https://github.com/jamestalmage/is-git-clean).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/is-git-clean.

index.d.ts

// Type definitions for is-git-clean 1.1
// Project: https://github.com/jamestalmage/is-git-clean
// Definitions by: Michaël De Boey <https://github.com/MichaelDeBoey>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

declare function isGitClean(dir?: string, options?: isGitClean.Options): Promise<boolean>;

declare namespace isGitClean {
    interface Options {
        files: string[];
    }

    function sync(dir?: string, options?: Options): boolean;
}
export = isGitClean;

Additional Details

  • Last updated: Fri, 25 Mar 2022 00:31:42 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Michaël De Boey.

1.1.1

7 months ago

1.1.2

6 months ago

1.1.0

2 years ago