| 49 | |
| 50 | // Final toolbox |
| 51 | export interface GluegunToolbox extends GluegunEmptyToolbox { |
| 52 | // known properties |
| 53 | config: Options |
| 54 | result?: any |
| 55 | parameters: GluegunParameters |
| 56 | plugin?: Plugin |
| 57 | command?: Command |
| 58 | pluginName?: string |
| 59 | commandName?: string |
| 60 | runtime?: Runtime |
| 61 | |
| 62 | // known extensions |
| 63 | filesystem: GluegunFilesystem |
| 64 | http: GluegunHttp |
| 65 | meta: GluegunMeta |
| 66 | patching: GluegunPatching |
| 67 | print: GluegunPrint |
| 68 | prompt: GluegunPrompt |
| 69 | semver: GluegunSemver |
| 70 | strings: GluegunStrings |
| 71 | system: GluegunSystem |
| 72 | template: GluegunTemplate |
| 73 | generate: any |
| 74 | packageManager: GluegunPackageManager |
| 75 | } |
| 76 | |
| 77 | export class EmptyToolbox implements GluegunEmptyToolbox { |
| 78 | [x: string]: any |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…