UNPKG

vue-styleguidist

Version:
15 lines (14 loc) 490 B
import { ProcessedSection } from '../../types/Section'; import { HrefOptions } from './processComponents'; interface SectionAndFiles { exampleFileNames: string[]; sections: ProcessedSection[]; } /** * Recursively process each component in all sections. * * @param {Array} sections * @return {Array} */ export default function processSections({ sections, exampleFileNames }: SectionAndFiles, { useRouterLinks, useHashId, hashPath }: HrefOptions): ProcessedSection[]; export {};