@types/pretty-quick
TypeScript icon, indicating that this package has built-in type declarations

3.1.6 • Public • Published

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.

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, 27 Feb 2024 18:07:37 GMT
  • Dependencies: @types/prettier

Credits

These definitions were written by Piotr Błażejewicz.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @types/pretty-quick

    Weekly Downloads

    7,966

    Version

    3.1.6

    License

    MIT

    Unpacked Size

    5.65 kB

    Total Files

    5

    Last publish

    Collaborators

    • types