UNPKG

@arcgis/create

Version:

ArcGIS command line tool to create new web GIS projects and applications

24 lines (20 loc) 553 B
import { Command } from '@commander-js/extra-typings'; /** * Commander program code */ /** * wraps the commander program in a function to allow for fresh instances while testing * @returns a commander program */ declare const makeProgram: (options?: { exitOverride?: boolean; suppressOutput?: boolean; }) => Command; /*********************** * module exports ***********************/ type ExportsForTests = { makeProgram: typeof makeProgram; }; declare let exportsForTests: ExportsForTests | undefined; export { exportsForTests };