Reviewed By: jknoxville Differential Revision: D14224400 fbshipit-source-id: 9a9a8578de00d276d65a7928964eae619f5bc41f
11 lines
300 B
JavaScript
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!');
|
|
}
|