Files
flipper/src/fb-stubs/createPaste.tsx
Pascal Hartig 36a1c0046c Migrate createPaste
Summary: _typescript_

Reviewed By: jknoxville

Differential Revision: D16649018

fbshipit-source-id: c30d4ec390946e4b6de49ffeccc452d0a55c1e7a
2019-08-09 03:25:05 -07:00

13 lines
316 B
TypeScript

/**
* 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 | undefined> {
return Promise.reject('Not implemented!');
}