durrrrrrrrrjs
Version:
29 lines (28 loc) • 944 B
TypeScript
import { AssetGlob } from '@nrwl/workspace/src/utilities/assets';
export declare type FileEventType = 'create' | 'update' | 'delete';
export interface FileEvent {
type: FileEventType;
src: string;
dest: string;
}
interface CopyAssetHandlerOptions {
projectDir: string;
rootDir: string;
outputDir: string;
assets: (string | AssetGlob)[];
callback?: (events: FileEvent[]) => void;
}
export declare const defaultFileEventHandler: (events: FileEvent[]) => void;
export declare class CopyAssetsHandler {
private readonly projectDir;
private readonly rootDir;
private readonly outputDir;
private readonly assetGlobs;
private readonly ignore;
private readonly callback;
constructor(opts: CopyAssetHandlerOptions);
processAllAssetsOnce(): Promise<void>;
watchAndProcessOnAssetChange(): Promise<() => Promise<void>>;
private processEvents;
}
export {};