mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-13 04:12:50 +00:00
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
import { open, mailto } from "openurl";
|
|
open("http://rauschma.de", (e) => {
|
|
console.log(e.message);
|
|
});
|
|
mailto(
|
|
["john@example.com", "jane@example.com"],
|
|
{ subject: "Hello!", body: "This is\nan automatically sent email!\n" }
|
|
);
|