cdk-nextjs
Version:
Deploy Next.js apps on AWS with CDK
9 lines (8 loc) • 304 B
TypeScript
/**
* Given path of directory, returns array of all file paths within directory
*/
export declare function listFilePaths(dirPath: string): string[];
/**
* Helper for batching requests
*/
export declare function chunkArray(array: string[], chunkSize: number): AsyncGenerator<string[], void, unknown>;