UNPKG

@mintlify/common

Version:

Commonly shared code within Mintlify

13 lines (12 loc) 552 B
import type { Directive, Statement, ModuleDeclaration } from 'estree-jsx'; export type MdxNodeBodyChildType = Directive | Statement | ModuleDeclaration; export type MdxNodeBodyType = Array<MdxNodeBodyChildType>; export type FileType = { filename: string; content: string; }; export type { MdxImportNode, FindAndRemoveImportsResponse, FileWithImports, } from './snippets/import.js'; export * from './snippets/import.js'; export * from './MdxCodeExampleData.js'; export * from './TableOfContentsSectionType.js'; export * from './MdxExtracts.js';