As in topic. I cannot handle it :/
I've installed npm i faker
and also npm i @types/faker --save-dev
my IDE found fakerStatic.name.findName()
but browser not recognizes fakerStatic
.
import 'faker';
does not help.
You have to import it like:
import * as faker from 'faker';
And use it like:
faker.name.findName()