I have installed ow by
npm i --save ow
and when I use it in my TypeScript project, I get
/home/ss/projects/m/node_modules/ts-node/src/index.ts:843
return new TSError(diagnosticText, diagnosticCodes, diagnostics);
^
TSError: ⨯ Unable to compile TypeScript:
src/modules/setPropertyOffer.ts(1,16): error TS2307: Cannot find module 'ow' or its corresponding type declarations.
Doing
npm i --save @types/ow
doesn't exist.
Question
How are the types installed for ow?