(
dir: string,
forgeConfig: ResolvedForgeConfig,
)
| 32 | private config: ResolvedForgeConfig; |
| 33 | |
| 34 | static async create( |
| 35 | dir: string, |
| 36 | forgeConfig: ResolvedForgeConfig, |
| 37 | ): Promise<PluginInterface> { |
| 38 | const int = new PluginInterface(dir, forgeConfig); |
| 39 | await int._pluginPromise; |
| 40 | return int; |
| 41 | } |
| 42 | |
| 43 | private constructor(dir: string, forgeConfig: ResolvedForgeConfig) { |
| 44 | this._pluginPromise = Promise.all( |
no outgoing calls
no test coverage detected