mirror of
https://github.com/status-im/react-native.git
synced 2025-01-13 11:05:21 +00:00
86b6f5d39e
Reviewed By: sahrens Differential Revision: D7958196 fbshipit-source-id: 05a04380a4a1f3abd4cc3a9034fc70deaa4a444b
17 lines
308 B
JavaScript
17 lines
308 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @nolint
|
|
* @format
|
|
*/
|
|
|
|
declare class Position {
|
|
coords: Coordinates;
|
|
timestamp: number;
|
|
mocked: boolean;
|
|
}
|