UNPKG

open-with-applications

Version:

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

10 lines (8 loc) 179 B
export interface GetApplications { getApplications: (filePath: string) => Application[] } export type Application = { name: string path: string iconPath: string | null }