extension-develop
Version:
The develop step of Extension.js
15 lines (14 loc) • 398 B
TypeScript
import { type Compiler } from '@rspack/core';
interface CopyPublicFolderOptions {
manifestPath: string;
}
export declare class CopyPublicFolder {
private readonly options;
constructor(options: CopyPublicFolderOptions);
private getPublicFolderPath;
private ensureDirectoryExistence;
private copyFile;
private copyFolder;
apply(compiler: Compiler): void;
}
export {};