pathpida
Version:
TypeScript friendly pages and static path generator for Next.js
14 lines • 484 B
TypeScript
export type Config = {
input: string | undefined;
appDir: {
input: string;
} | undefined;
staticDir: string | undefined;
output: string;
ignorePath: string | undefined;
basepath?: string | undefined;
pageExtensions?: string[] | undefined;
};
declare const _default: (enableStatic: boolean, output: string | undefined, igPath: string | undefined, dir?: string) => Promise<Config>;
export default _default;
//# sourceMappingURL=getConfig.d.ts.map