mirror of
https://github.com/status-im/react-native.git
synced 2025-02-22 22:28:09 +00:00
Summary: Changelog: ---------- [iOS][Changed] - added types to RCTSnapshotNativeComponent.js, as mentioned in #22990 Pull Request resolved: https://github.com/facebook/react-native/pull/23111 Differential Revision: D13781429 Pulled By: cpojer fbshipit-source-id: 7efffe150fd29cbfbb3a6b8f13e38295f83acb3c
34 lines
843 B
JavaScript
34 lines
843 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {SyntheticEvent} from 'CoreEventTypes';
|
|
import type {ViewProps} from 'ViewPropTypes';
|
|
import type {NativeComponent} from 'ReactNative';
|
|
|
|
type SnapshotReadyEvent = SyntheticEvent<
|
|
$ReadOnly<{
|
|
testIdentifier: string,
|
|
}>,
|
|
>;
|
|
|
|
type NativeProps = $ReadOnly<{|
|
|
...ViewProps,
|
|
onSnapshotReady?: ?(event: SnapshotReadyEvent) => mixed,
|
|
testIdentifier?: ?string,
|
|
|}>;
|
|
|
|
type SnapshotViewNativeType = Class<NativeComponent<NativeProps>>;
|
|
|
|
const requireNativeComponent = require('requireNativeComponent');
|
|
|
|
module.exports = ((requireNativeComponent('RCTSnapshot'):any): SnapshotViewNativeType);
|