@types/pretty-quick
Version:
TypeScript definitions for pretty-quick
64 lines (54 loc) • 2.16 kB
Markdown
# Installation
> `npm install --save @types/pretty-quick`
# Summary
This package contains type definitions for pretty-quick (https://github.com/azz/pretty-quick#readme).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pretty-quick.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pretty-quick/index.d.ts)
````ts
import { ResolveConfigOptions } from "prettier";
declare namespace prettyQuick {
interface Options {
config?: ResolveConfigOptions | undefined;
since?: string | undefined;
/** @default false */
staged?: boolean | undefined;
pattern?: string | string[] | undefined;
/** @default true */
restage?: boolean | undefined;
/**
* @default 'master' | 'default'
*/
branch?: string | undefined;
bail?: boolean | undefined;
check?: boolean | undefined;
ignorePath?: string | undefined;
verbose?: boolean | undefined;
onFoundSinceRevision?: ((name: string, revision: string) => void) | undefined;
onFoundChangedFiles?: ((changedFiles: string[]) => void) | undefined;
onPartiallyStagedFile?: ((file: string) => void) | undefined;
onExamineFile?: ((file: string) => void) | undefined;
onCheckFile?: ((file: string, isFormatted: boolean) => void) | undefined;
onWriteFile?: ((file: string) => void) | undefined;
// ...args support
[key: string]: any;
}
interface Results {
readonly success: boolean;
readonly errors: string[];
}
}
/**
* Runs Prettier on your changed files.
* Supported source control managers:
* * Git
* * Mercurial
*/
declare function prettyQuick(currentDirectory: string, options?: prettyQuick.Options): prettyQuick.Results;
export = prettyQuick;
````
### Additional Details
* Last updated: Tue, 07 Nov 2023 09:09:39 GMT
* Dependencies: [@types/prettier](https://npmjs.com/package/@types/prettier)
# Credits
These definitions were written by [Piotr Błażejewicz](https://github.com/peterblazejewicz).