Newsha Nik
Newsha Nik

Reputation: 957

Cannot find module '@angular-persian/material-date-picker' or its corresponding type declarations

I'm trying to use Persian Jalali DatePicker for Angular Material in my project. So far, I have installed the package:

npm i --save @angular-persian/material-date-picker

But when I try to import it in my Angular project like so,

import {MatDatepickerModulePersian} from '@angular-persian/material-date-picker';

I get the following error:

Cannot find module '@angular-persian/material-date-picker' or its corresponding type declarations.

Upvotes: 4

Views: 1650

Answers (1)

masoudvrz
masoudvrz

Reputation: 41

You just need to add "/src" to end of import

import {MatDatepickerModulePersian} from '@angular-persian/material-date-picker/src';

Upvotes: 4

Related Questions