Comparing version 2.0.0 to 2.0.1
// Type definitions for cf-prefs | ||
// Project: cf-prefs | ||
export type CFPrefValue = boolean | number | string | Array<CFPrefValue> | Record<string, CFPrefValue> | undefined; | ||
export type CFPrefValue = boolean | string | number | { [key: string]: CFPrefValue } | Array<CFPrefValue>; | ||
export function getPreferenceValue(key: string): CFPrefValue; | ||
export function isPreferenceForced(key: string): boolean; |
{ | ||
"name": "cf-prefs", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "A native node module to access managed app preferences on macOS", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12537