I am working on to use the ng2-datetime. Installed through npm, but when I build the solution, I am getting an error that cannot find name 'jQuery'.
I have added the jQuery through npm and also tried to include the jquery library, but the issue still persists. Can anyone tell what else to include? I'm using angular 2.2 with typescript and my IDE is VS2015
app.module.ts
just added the import statement
import { NKDatetimeModule } from 'ng2-datetime/ng2-datetime';
and under imports
@NgModule({
imports:[NKDatetimeModule ])}