UNPKG

next-page-tester

Version:
9 lines (8 loc) 310 B
import type { ExtendedOptions } from '../commonTypes'; /** * Returns available page paths without file extension sorted by matching priority */ declare function getPagePaths({ options: { pagesDirectory, pageExtensions }, }: { options: ExtendedOptions; }): Promise<string[]>; export default getPagePaths;