| 6 | import {ImportMap, SnowpackBuiltFile, SnowpackConfig} from '../types'; |
| 7 | |
| 8 | interface InstallOptions { |
| 9 | config: SnowpackConfig; |
| 10 | isDev: boolean; |
| 11 | isSSR: boolean; |
| 12 | installOptions: EsinstallOptions; |
| 13 | installTargets: (InstallTarget | string)[]; |
| 14 | } |
| 15 | |
| 16 | interface InstallResult { |
| 17 | importMap: ImportMap; |
nothing calls this directly
no outgoing calls
no test coverage detected