UNPKG

cf-prefs

Version:

A native node module to access managed app preferences on macOS

8 lines (5 loc) 283 B
// Type definitions for cf-prefs // Project: cf-prefs export type CFPrefValue = boolean | string | number | { [key: string]: CFPrefValue } | Array<CFPrefValue>; export function getPreferenceValue(key: string): CFPrefValue; export function isPreferenceForced(key: string): boolean;