/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { CompileOptions } from '@mdx-js/mdx' export interface SerializeOptions { /** * Pass-through variables for use in the MDX content */ scope?: Record /** * These options are passed to the MDX compiler. * See [the MDX docs.](https://github.com/mdx-js/mdx/blob/master/packages/mdx/index.js). */ mdxOptions?: Omit & { useDynamicImport?: boolean } /** * Indicate whether or not frontmatter should be parsed out of the MDX. Defaults to false */ parseFrontmatter?: boolean } /** * Represents the return value of a call to serialize() */ export type MDXRemoteSerializeResult< TScope = Record, TFrontmatter = Record > = { /** * The compiledSource, generated from next-mdx-remote/serialize */ compiledSource: string /** * An arbitrary object of data which will be supplied to the MDX. * * For example, in cases where you want to provide template variables to the MDX, like `my name is {name}`, * you could provide scope as `{ name: "Some name" }`. */ scope: TScope /** * If parseFrontmatter was set to true, contains any parsed frontmatter found in the MDX source. */ frontmatter: TFrontmatter }