@mathjax/src
    Preparing search index...

    Type Alias CONVERT<I, O, D>

    CONVERT: I extends string
        ? O extends string
            ? {
                [i in I as `${i}2${O}`]?: (
                    math: string,
                    options?: CONVERT_OPTIONS,
                ) => N<D>
            } & {
                [i in I as `${i}2${O}Promise`]?: (
                    math: string,
                    options?: CONVERT_OPTIONS,
                ) => Promise<N<D>>
            }
            : EMPTY
        : EMPTY

    Create input2output and input2outputPromise from jax names

    Type Parameters

    • I extends KEY

      The input jax name

    • O extends KEY

      The output jax name

    • D extends DOM_TYPES

      The DOM node types to use