npm i --save-dev @enonic-types/lib-static
Add lib-static to compilerOptions.paths in the tsconfig.json file:
{
"compilerOptions": {
"paths": {
"/lib/enonic/static": ["node_modules/@enonic-types/lib-static"],
}
}
}
import {requestHandler} from '/lib/enonic/static';
All imports from /lib/enonic/static should now be typed.