mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-03-06 22:37:14 +08:00
Add types to RCTSnapshotNativeComponent (#23111)
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
This commit is contained in:
committed by
Facebook Github Bot
parent
70227fec66
commit
67ad72fa3c
@@ -5,11 +5,29 @@
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
* @format
|
||||
* @flow strict-local
|
||||
* @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');
|
||||
module.exports = ((requireNativeComponent('RCTSnapshot'):any): SnapshotViewNativeType);
|
||||
|
||||
Reference in New Issue
Block a user