UNPKG

tiny-open

Version:

A tiny utility for opening a file or a URL with its default application, or a custom one.

5 lines (4 loc) 164 B
import type { Options } from './types.js'; declare const open: (path: string, options?: Options) => Promise<boolean>; export default open; export type { Options };