UNPKG

projectman

Version:

Hate opening folders? Select and open your projects in your favourite editor straight from your command line without 'CD'ing into the deeply nested folders.

15 lines (12 loc) 215 B
export type ChoiceType = { title: string; }; export type ProjectType = { name: string; path: string; editor?: string; }; export type SettingsType = { commandToOpen: string; projects: ProjectType[]; };