-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error TS2305: Module '"./common/manifest"' has no exported member 'ManifestEndpoint' #1031
Comments
I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight. |
Same issue after upgrading to 3.17.0 when running Had to rollback firebase-functions in package.json to force 3.16.0 and run "firebase-functions": "3.16.0" node_modules/firebase-functions/lib/cloud-functions.d.ts:5:10 - error TS2305: Module '"./common/manifest"' has no exported member 'ManifestEndpoint'.
5 import { ManifestEndpoint, ManifestRequiredAPI } from './common/manifest';
~~~~~~~~~~~~~~~~
node_modules/firebase-functions/lib/cloud-functions.d.ts:5:28 - error TS2305: Module '"./common/manifest"' has no exported member 'ManifestRequiredAPI'.
5 import { ManifestEndpoint, ManifestRequiredAPI } from './common/manifest';
~~~~~~~~~~~~~~~~~~~
node_modules/firebase-functions/lib/providers/https.d.ts:3:10 - error TS2305: Module '"../common/manifest"' has no exported member 'ManifestEndpoint'.
3 import { ManifestEndpoint, ManifestRequiredAPI } from '../common/manifest';
~~~~~~~~~~~~~~~~
node_modules/firebase-functions/lib/providers/https.d.ts:3:28 - error TS2305: Module '"../common/manifest"' has no exported member 'ManifestRequiredAPI'.
3 import { ManifestEndpoint, ManifestRequiredAPI } from '../common/manifest'; |
Thanks for the report and sorry for the troubles. The hotfix is underway. |
Release 3.17.1 should contain the fix for the reported issue. Please let us know if you are facing any other issue! |
Working now for me |
I'm still having this error:
EDIT: Fixed in 3.17.2 |
Thanks @taeold ! |
@IchordeDionysos That does look like a different error because the module in question in this issue is |
After updating firebase-functions to 3.17.0, I am facing an issue while deploying the changes.
firebase deploy --only functions
node_modules/firebase-functions/lib/cloud-functions.d.ts(5,10): error TS2305: Module '"./common/manifest"' has no exported member 'ManifestEndpoint'. node_modules/firebase-functions/lib/cloud-functions.d.ts(5,28): error TS2305: Module '"./common/manifest"' has no exported member 'ManifestRequiredAPI'. node_modules/firebase-functions/lib/providers/https.d.ts(3,10): error TS2305: Module '"../common/manifest"' has no exported member 'ManifestEndpoint'. node_modules/firebase-functions/lib/providers/https.d.ts(3,28): error TS2305: Module '"../common/manifest"' has no exported member 'ManifestRequiredAPI'.
Reverting back to 3.16.0 in package.json resolves the issue for me.
The text was updated successfully, but these errors were encountered: