angular2-localstorage
angular2-localstorage copied to clipboard
Ionic 2 RC0 Build Error :Supplied parameters do not match any signature of call target
Hi, I think I found an issue in angular2-localstorage that fail the build process.
to fix this edit "/node_modules/angular-2-local-storage/dist/LocalStorageService.d.ts" and replace following line"
constructor(config: ILocalStorageServiceConfig);
with this :
constructor(config?: ILocalStorageServiceConfig);
this make the config parameter optional.
Are you using AOT? AOT has problems with typed injected parameters.
FYI this is posted against the wrong repo.
@mmirzaee's issue is with angular-2-local-storage
, not angular2-local-storage
.
https://github.com/phenomnomnominal/angular-2-local-storage
PS the issue has since been fixed.