UNPKG

@kcws/lintstaged-config

Version:
24 lines 525 B
import type { IBaseActionOptions, BaseActionFn } from "./_base"; /** * Option for create prettier command * * @beta */ export interface IPrettierOptions extends IBaseActionOptions { fix?: boolean; } /** * create command with input option * * @remarks * * Function type: {@link BaseActionFn} and * Option type: {@link IPrettierOptions} * * @param option - customize option * @returns command * * @beta */ export declare const prettier: BaseActionFn<IPrettierOptions>; //# sourceMappingURL=prettier.d.ts.map