# @types/move-concurrently

> TypeScript definitions for move-concurrently

Latest version **1.0.7** (published 2023-11-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @types/move-concurrently
pnpm add @types/move-concurrently
yarn add @types/move-concurrently
bun add @types/move-concurrently
```

## Health

**Score 45/100 (D)** — status: abandoned.

Positive: has types; no vulnerabilities; high maintenance score; popular repo; extremely popular.

Warnings: low downloads; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 1.0.7 |
| Published | 2023-11-07 |
| First published | 2017-08-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 5.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 51429 |
| Maintainers | types |

## Links

- npm: https://www.npmjs.com/package/@types/move-concurrently
- Repository: https://github.com/DefinitelyTyped/DefinitelyTyped
- Homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/move-concurrently
- npm.io page: https://npm.io/package/@types/move-concurrently

## Recent versions

- 1.0.7 (latest) — 2023-11-07
- 1.0.4 (ts3.6) — 2021-07-07
- 1.0.2 (ts3.2) — 2019-05-24
- 1.0.1 (ts2.8) — 2018-07-14
- 1.0.0 (ts2.4) — 2017-08-11
- 1.0.6 — 2023-10-18
- 1.0.5 — 2023-09-27
- 1.0.3 — 2021-07-07

## README

# Installation
> `npm install --save @types/move-concurrently`

# Summary
This package contains type definitions for move-concurrently (https://www.npmjs.com/package/move-concurrently).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/move-concurrently.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/move-concurrently/index.d.ts)
````ts
/**
 * Recursively moves from to to and resolves its promise when finished. If to already exists then the promise will be rejected with an EEXIST error.
 */
declare function move<T extends PromiseLike<void> = Promise<void>>(from: string, to: string, opts?: move.Options<T>): T;

declare namespace move {
    interface Options<T extends PromiseLike<void> = Promise<void>> {
        /**
         * (Default: 1) The maximum number of concurrent copies to do at once.
         */
        maxConcurrency?: number | undefined;
        /**
         * (Default: process.platform === 'win32') If true enables Windows symlink semantics.
         * This requires an extra stat to determine if the destination of a symlink is a file or directory.
         * If symlinking a directory fails then we'll try making a junction instead.
         */
        isWindows?: boolean | undefined;
        /**
         * (Default: global.Promise) The promise implementation to use, defaults to Node's.
         */
        Promise?: (new(...args: any[]) => T | undefined) | undefined;
        /**
         * (Default: require('fs')) The filesystem module to use. Can be used to use graceful-fs or to inject a mock.
         */
        fs?: any;
        /**
         * (Default: require('fs-write-stream-atomic')) The implementation of writeStreamAtomic to use. Used to inject a mock.
         */
        writeStreamAtomic?: any;
        /**
         * (Default: process.getuid) A function that returns the current UID. Used to inject a mock.
         */
        getuid?: any;
    }
}

export = move;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 09:09:39 GMT
 * Dependencies: none

# Credits
These definitions were written by [Melvin Groenhoff](https://github.com/mgroenhoff).

---
_Source: https://npm.io/package/@types/move-concurrently · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
