What happened?
Previously, I was using this type:
import type { Token } from "@octokit/auth-token/dist-types/types.js"
With the conversion to ESModules (I think), the file is no longer accessible, so I have to do with this:
// Module '"@octokit/auth-token"' declares 'Token' locally, but it is not exported. ts(2459)
import type { Token } from "@octokit/auth-token"
But the type forgot to be exported
Versions
"@octokit/auth-token": "^5.0.1",
Relevant log output
No response
Code of Conduct
What happened?
Previously, I was using this type:
With the conversion to ESModules (I think), the file is no longer accessible, so I have to do with this:
But the type forgot to be exported
Versions
"@octokit/auth-token": "^5.0.1",
Relevant log output
No response
Code of Conduct