vue-styleguidist
Version:
Vue components style guide generator
15 lines (14 loc) • 490 B
TypeScript
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 {};