UNPKG

@modern-js/module-tools-v2

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

15 lines 351 B
import type { globby } from '@modern-js/utils'; export interface CopyPattern { from: string; to?: string; context?: string; globOptions?: globby.GlobbyOptions; } export interface CopyOptions { patterns?: CopyPattern[]; options?: { concurrency?: number; enableCopySync?: boolean; }; } export declare type CopyConfig = CopyOptions;