Skip to content

Instantly share code, notes, and snippets.

@marutypes
Created March 5, 2018 16:59
Show Gist options
  • Save marutypes/c493d7560e9cf591fcd6a09d5ed44f46 to your computer and use it in GitHub Desktop.
Save marutypes/c493d7560e9cf591fcd6a09d5ed44f46 to your computer and use it in GitHub Desktop.
interface Options {
pattern?: Regex
filter(path: string)?: boolean,
transform(path: string, content: string)?: string,
onSuccess(path): void,
onFail(path): void,
}
const files = copyRecursive(source: string, target: string, options: Options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment