react-native-windows
Version:
React Native for Windows
29 lines (23 loc) • 602 B
JavaScript
/**
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
* @format
*/
;
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;