UNPKG

@pagopa/dx-cli

Version:

A CLI useful to manage DX tools.

6 lines (5 loc) 322 B
import { ResultAsync } from "neverthrow"; import { CodemodRegistry } from "../domain/codemod.js"; import { GetInfo } from "../domain/info.js"; export type ApplyCodemodById = (id: string) => ResultAsync<void, Error>; export declare const applyCodemodById: (registry: CodemodRegistry, getInfo: GetInfo) => ApplyCodemodById;