Files
flipper/src/fb-stubs/createPaste.js
Daniel Büchele 99ea11b8e6 createPaste
Reviewed By: jknoxville

Differential Revision: D14224400

fbshipit-source-id: 9a9a8578de00d276d65a7928964eae619f5bc41f
2019-02-28 07:28:25 -08:00

11 lines
300 B
JavaScript

/**
* Copyright 2018-present Facebook.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* @format
*/
export default function createPaste(input: string): Promise<?string> {
return Promise.reject('Not implemented!');
}