opener/ 000755 001751 000177 0000000000 14522377323 014051 5 ustar 00runner 000000 000000 14522377323 14522377323 opener/LICENSE 000644 001751 000177 0000002165 14522377323 015062 0 ustar 00runner 000000 000000 14522377323 14522377323 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
opener/README.md 000644 001751 000177 0000001625 14522377323 015322 0 ustar 00runner 000000 000000 14522426030 14522377323 # Installation
> `npm install --save @types/opener`
# Summary
This package contains type definitions for opener (https://github.com/domenic/opener).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/opener.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/opener/index.d.ts)
````ts
///
import { ChildProcess } from "child_process";
type Callback = (error: Error, stdout: string, stderr: string) => void;
declare function opener(
args: string | string[],
options?: {},
callback?: Callback,
): ChildProcess;
export = opener;
````
### Additional Details
* Last updated: Tue, 07 Nov 2023 09:09:39 GMT
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)
# Credits
These definitions were written by [Rahul Ravikumar](https://github.com/tikurahul).
opener/index.d.ts 000644 001751 000177 0000000433 14522377323 015752 0 ustar 00runner 000000 000000 14522377323 14522377323 ///
import { ChildProcess } from "child_process";
type Callback = (error: Error, stdout: string, stderr: string) => void;
declare function opener(
args: string | string[],
options?: {},
callback?: Callback,
): ChildProcess;
export = opener;
opener/package.json 000644 001751 000177 0000001463 14522377323 016331 0 ustar 00runner 000000 000000 14522426030 14522377323 {
"name": "@types/opener",
"version": "1.4.3",
"description": "TypeScript definitions for opener",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/opener",
"license": "MIT",
"contributors": [
{
"name": "Rahul Ravikumar",
"githubUsername": "tikurahul",
"url": "https://github.com/tikurahul"
}
],
"main": "",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/opener"
},
"scripts": {},
"dependencies": {
"@types/node": "*"
},
"typesPublisherContentHash": "b707845499014ebc1a59d48275684bf9a425893516242db526a23a523d5c7bfb",
"typeScriptVersion": "4.5"
}