| 15 | import fs from 'fs-extra'; |
| 16 | |
| 17 | interface IOptions { |
| 18 | dir?: string; |
| 19 | access?: string; |
| 20 | parameters?: Record<string, any>; |
| 21 | appName?: string; |
| 22 | project?: string; |
| 23 | uri?: string; |
| 24 | y?: boolean; |
| 25 | overwrite?: boolean; |
| 26 | } |
| 27 | |
| 28 | export default class Manager { |
| 29 | private template: string; |
nothing calls this directly
no outgoing calls
no test coverage detected