# Installation
> `npm install --save @types/openurl`

# Summary
This package contains type definitions for openurl (https://github.com/rauschma/openurl).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/openurl.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/openurl/index.d.ts)
````ts
/// <reference types="node" />

export function open(url: string, callback?: (err: Error) => void): void;
export function mailto(
    recipients: string[],
    fields: { [key: string]: string },
    recipientsSeparator?: string,
    callback?: (err: Error) => void,
): void;

````

### 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 [Felix Hao](https://github.com/felixhao28).
