| 3 | import { PackageJSON } from '../toolbox/meta-types' |
| 4 | |
| 5 | export interface GluegunMeta { |
| 6 | src: string | void |
| 7 | version: () => string |
| 8 | packageJSON: () => PackageJSON |
| 9 | commandInfo: () => string[][] |
| 10 | checkForUpdate: () => Promise<boolean | string> |
| 11 | onAbort: typeof onAbort |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Extension that lets you learn more about the currently running CLI. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…