UNPKG

@studiocms/md

Version:

Add Markdown Support to your StudioCMS project with ease!

17 lines (16 loc) 682 B
import type { AstroConfig } from 'astro'; import type { MarkdownSchemaOptions } from '../types.js'; export declare const symbol: symbol; /** * A shared object that is either retrieved from the global scope using a symbol or * initialized as a new object with a `mdxConfig` property. * * @remarks * The `@ts-expect-error` comments are used to suppress TypeScript errors related to the use of * the global scope and assignment within expressions. The `biome-ignore` comment is used * to suppress linting errors for the same reason. */ export declare const shared: { mdConfig?: MarkdownSchemaOptions | undefined; astroMDRemark?: AstroConfig['markdown'] | undefined; };