UNPKG

cdk-nextjs

Version:

Deploy Next.js apps on AWS with CDK

11 lines (10 loc) 277 B
interface PruneFsProps { mountPath: string; currentBuildId: string; } /** * Given `mountPath` and `currentBuildId`, delete all directories at `mountPath` * that are not named `currentBuildId` */ export declare function pruneFs(props: PruneFsProps): void; export {};