UNPKG

open-with-applications

Version:

A Node.js package to find applications that can open a file on macOS

13 lines (10 loc) 231 B
interface GetApplications { getApplications: (filePath: string) => Application[]; } type Application = { name: string; path: string; iconPath: string | null; }; declare const Mac: GetApplications; export { Mac };