UNPKG

mdxlayer

Version:

Transform your MDX content into typed, JSON-powered data with flexible schema validation.

9 lines (8 loc) 295 B
import { Cache } from '../cache/index.js'; import { Doc } from '../types/index.js'; export interface TransformFileParams { doc: Doc | string | Cache; subpath: string; filename: string; } export declare const transformFile: ({ doc, subpath, filename, }: TransformFileParams) => void;