UNPKG

react-native-windows

Version:
29 lines (23 loc) 602 B
/** * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * @format */ 'use strict'; var Settings = { get(key: string): mixed { console.warn('Settings is not yet supported on UWP'); return null; }, set(settings: Object) { console.warn('Settings is not yet supported on UWP'); }, watchKeys(keys: string | Array<string>, callback: Function): number { console.warn('Settings is not yet supported on UWP'); return -1; }, clearWatch(watchId: number) { console.warn('Settings is not yet supported on UWP'); }, }; module.exports = Settings;