2015-03-12 12:51:44 -07:00
|
|
|
/**
|
2015-03-23 15:07:33 -07:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-03-12 12:51:44 -07:00
|
|
|
*
|
|
|
|
* @providesModule AppStateIOS
|
2015-03-24 19:34:12 -07:00
|
|
|
* @flow
|
2015-03-12 12:51:44 -07:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-05-23 09:08:51 -07:00
|
|
|
const AppState = require('AppState');
|
2015-03-12 12:51:44 -07:00
|
|
|
|
2016-05-23 09:08:51 -07:00
|
|
|
console.warn('AppStateIOS is deprecated. Use AppState instead');
|
2015-03-12 12:51:44 -07:00
|
|
|
|
2016-05-23 09:08:51 -07:00
|
|
|
module.exports = AppState;
|