next-page-tester
Version:
Enable DOM integration testing on Next.js pages
9 lines (8 loc) • 310 B
TypeScript
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;