@mathjax/src
    Preparing search index...

    Type Alias CONVERTJAX<I, O, D>

    CONVERTJAX: I extends JAXLIST
        ? O extends JAXLIST
            ? COMBINE<CONVERT<keyof I, keyof O, D>> & {
                typeset?: (elements?: N<D>[]) => void;
                typesetClear?: (elements?: N<D>[]) => void;
                typesetPromise?: (elements?: N<D>[]) => Promise<void>;
            }
            : EMPTY
        : EMPTY

    Create all input2output and input2outputPromise methods from the jax lists

    Type Parameters

    • I

      Object containing the names of the input jax as its keys

    • O

      Object containing the names of the output jax as its keys

    • D extends DOM_TYPES

      The DOM node types to use