UNPKG

@mintlify/scraping

Version:

Scrape documentation frameworks to Mintlify docs

10 lines (7 loc) 237 B
import type { Element } from 'hast'; import type { HastNode, HastNodeIndex, HastNodeParent } from './hast.js'; export type ScrapeFuncType = ( node: HastNode, index: HastNodeIndex, parent: HastNodeParent ) => Element | undefined;