pause/ 000755 001751 001751 0000000000 15076575141 013706 5 ustar 00runner 000000 000000 15076575141 15076575141 pause/LICENSE 000644 001751 001751 0000002165 15076575141 014717 0 ustar 00runner 000000 000000 15076575141 15076575141 MIT License
Copyright (c) Microsoft Corporation.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE
pause/README.md 000644 001751 001751 0000001564 15076575141 015211 0 ustar 00runner 000000 000000 15076577774 15076575141 # Installation
> `npm install --save @types/pause`
# Summary
This package contains type definitions for pause (https://github.com/stream-utils/pause).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pause.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pause/index.d.ts)
````ts
///
import stream = require("stream");
export = pause;
declare function pause(stream: stream.Stream): pause.Handle;
declare namespace pause {
interface Handle {
end(): void;
resume(): void;
}
}
````
### Additional Details
* Last updated: Fri, 24 Oct 2025 04:02:41 GMT
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)
# Credits
These definitions were written by [BendingBender](https://github.com/BendingBender).
pause/index.d.ts 000644 001751 001751 0000000370 15076575141 015607 0 ustar 00runner 000000 000000 15076575141 15076575141 ///
import stream = require("stream");
export = pause;
declare function pause(stream: stream.Stream): pause.Handle;
declare namespace pause {
interface Handle {
end(): void;
resume(): void;
}
}
pause/package.json 000644 001751 001751 0000001521 15076575141 016211 0 ustar 00runner 000000 000000 15076577774 15076575141 {
"name": "@types/pause",
"version": "0.1.4",
"description": "TypeScript definitions for pause",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pause",
"license": "MIT",
"contributors": [
{
"name": "BendingBender",
"githubUsername": "BendingBender",
"url": "https://github.com/BendingBender"
}
],
"main": "",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/pause"
},
"scripts": {},
"dependencies": {
"@types/node": "*"
},
"peerDependencies": {},
"typesPublisherContentHash": "65eb1ae71453302e1f70de7910750a531db66b9a99bc3ddaa0d9769ae1542db7",
"typeScriptVersion": "5.2"
}