UNPKG

next-mdx-remote-client

Version:

A wrapper of the `@mdx-js/mdx` for the `nextjs` applications in order to load MDX content. It is a fork of `next-mdx-remote`.

19 lines (15 loc) 447 B
/** * Copyright (c) @talatkuyuk AKA @ipikuka * SPDX-License-Identifier: MPL-2.0 */ export { MDXRemote } from "./MDXRemote.js"; export { evaluate } from "./evaluate.js"; export type { MDXRemoteProps, MDXRemoteOptions, EvaluateProps, EvaluateOptions, EvaluateResult, } from "./types.js"; // for who needs to use them without installing the "mdx/types" export type { MDXComponents, MDXContent, MDXProps, MDXModule } from "mdx/types";