UNPKG

@primer/primitives

Version:

Typography, spacing, and color primitives for Primer design system

9 lines (8 loc) 272 B
/** * copyFromDir * @description Copies all files from source folder to destination * @param source path * @param destination path * @returns promise of file name array */ export declare const copyFromDir: (source: string, destination: string) => Promise<string[]>;