You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.
Argument of type '{ version: string; config: string; hostname: string; mathjaxconfigobject: {}; }' is not assignable to parameter of type 'ModuleConfiguration'.
Object literal may only specify known properties, and 'mathjaxconfigobject' does not exist in type 'ModuleConfiguration'.ts(2345)
As seen in types
export declare class ModuleConfiguration {
/**
* The version of the MathJax library.
*/
version: string;
/**
* The config name of the MathJax library.
* Please check the MathJax [documentation](https://docs.mathjax.org/en/latest/config-files.html) for all the configuration names.
*/
config: string;
/**
* MathJax CDN hostname. Please check [here](https://docs.mathjax.org/en/latest/start.html#mathjax-cdn) for available CDN servers.
*/
hostname: string;
}
need to add definition for mathjaxconfigobject.
EDIT:
I cloned your repo, and mathjaxconfigobject is defined in ModuleConfiguration. I think you just need to publish.
As seen in types
need to add definition for
mathjaxconfigobject
.EDIT:
I cloned your repo, and
mathjaxconfigobject
is defined inModuleConfiguration
. I think you just need to publish.EDIT2:
It's already in this merge.
bd884dd
The text was updated successfully, but these errors were encountered: