We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
preRun
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
This is likely to be an upsteam issue in @types/emscripten, but I do not have the time to investigate fully right now.
@types/emscripten
Currently the type signature of preRun is (() => void)[]. Instead it should be more like
(() => void)[]
type singlePreRunType = ((arg: SWIPLModule) => void) | (() => void); type preRunType = singlePreRunType | singlePreRunType[] | undefined;
as can be seen in the usage in https://github.com/eyereasoner/eye-js/pull/79/files
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is likely to be an upsteam issue in
@types/emscripten
, but I do not have the time to investigate fully right now.Currently the type signature of
preRun
is(() => void)[]
. Instead it should be more likeas can be seen in the usage in https://github.com/eyereasoner/eye-js/pull/79/files
The text was updated successfully, but these errors were encountered: