-
-
Notifications
You must be signed in to change notification settings - Fork 25
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
Module '"@webarkit/jsartoolkit-nft"' has no exported member 'ARToolkitNFT' #292
Comments
Hi @timohausmann i have never had this issue, i can import it into ARnft without any problems. Probably a Vite issue? I have no experience with It so i can not say so much. Just a question are you trying to import in a JavaScript file or Typescript? |
@timohausmann you should add more infos about the issue and if possible a link to a repository with a minimal example to test. Thank you! 🙂 |
Hey, it's a TS file. The issue seems to be that both index.d.ts and index.ts have a default export of an object literal. I'm not sure if deconstructing default exports is valid synxtax. Named exports would be better here, like: export ARToolkitNFT from "./ARToolkitNFT";
export ARControllerNFT from "./ARControllerNFT"; So currently this works with the default export: import artools from '@webarkit/jsartoolkit-nft';
const {ARToolkitNFT, ARControllerNFT } = artools; Codesandbox Demo of the issue: https://codesandbox.io/s/confident-engelbart-o1idk3?file=/src/index.ts |
Yes you are right youn need to import in this way: import artools from '@webarkit/jsartoolkit-nft';
const {ARToolkitNFT, ARControllerNFT } = artools; I should update the Readme, but i'm going to make some changes and improvements to the C++ and Typescript code. |
Hey, trying first steps with this module but get this error in my Vite react-ts project:
What I did:
VS Code says:
But it works when I add
// @ts-ignore
above.Any ideas what' the issue?
The text was updated successfully, but these errors were encountered: