UNPKG

@pagopa/dx-cli

Version:

A CLI useful to manage DX tools.

8 lines (7 loc) 273 B
import { Command } from "commander"; import { GitHubService } from "../../../domain/github.js"; type InitCommandDependencies = { gitHubService: GitHubService; }; export declare const makeInitCommand: ({ gitHubService, }: InitCommandDependencies) => Command; export {};