mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This diff introduces NativeClipboard. Reviewed By: PeteTheHeat Differential Revision: D16283266 fbshipit-source-id: e16e44d0e6364a38f177cdadce71733a3cd001ad
23 lines
591 B
JavaScript
23 lines
591 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.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {TurboModule} from '../../TurboModule/RCTExport';
|
|
import * as TurboModuleRegistry from '../../TurboModule/TurboModuleRegistry';
|
|
|
|
export interface Spec extends TurboModule {
|
|
+getConstants: () => {||};
|
|
+getString: () => Promise<string>;
|
|
+setString: (content: string) => void;
|
|
}
|
|
|
|
export default TurboModuleRegistry.getEnforcing<Spec>('Clipboard');
|