( target: MakerBase<any> | unknown, )
| 59 | |
| 60 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 61 | function isElectronForgeMaker( |
| 62 | target: MakerBase<any> | unknown, |
| 63 | ): target is MakerBase<any> { |
| 64 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 65 | return (target as MakerBase<any>).__isElectronForgeMaker; |
| 66 | } |
| 67 | |
| 68 | type MakeContext = { |
| 69 | dir: string; |