@gobstones/gobstones-scripts
Version:
Scripts to abstract away build configuration of Gobstones Project's libraries and modules.
25 lines • 684 B
TypeScript
/**
* This type represents the options that you can pass to the move task.
*/
export interface TaskMoveOptions {
/**
* The source file, or folder or glob pattern to move.
*/
src: string;
/**
* The destination folder on which to move the files to.
*/
dest: string;
}
/**
* Returns the string for the bash command to run
* a move command, moving files from one location to another.
*
* @param options - The options applied when running the move.
*
* @example move({ src: './src', dest: './dist' })
*
* @returns The bash command string.
*/
export declare const move: (options: TaskMoveOptions) => string;
//# sourceMappingURL=move.d.ts.map