mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
26cb6bef15
Summary: public RCTPasteboard is a very basic API for writing strings to the pasteboard. Useful for implementing "copy to clipboard" functionality. Reviewed By: astreet Differential Revision: D2663875 fb-gh-sync-id: 8d0ecd824c3e9fe135b02201d21d0dab1907c329
15 lines
399 B
Objective-C
15 lines
399 B
Objective-C
/**
|
|
* 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.
|
|
*/
|
|
|
|
#import "RCTBridgeModule.h"
|
|
|
|
@interface RCTPasteboard : NSObject <RCTBridgeModule>
|
|
|
|
@end
|