This repository contains types definitions for alt:V JavaScript modules.
Server-side
npm i -D @altv/types-serverClient-side
npm i -D @altv/types-clientTo make these types detectable, you've to add typeRoots property below to your project's tsconfig.json
{
"compilerOptions": {
"typeRoots": [
"./node_modules/@types",
"./node_modules/@altv"
]
}
}