Summary: _typescript_ Reviewed By: jknoxville Differential Revision: D16649018 fbshipit-source-id: c30d4ec390946e4b6de49ffeccc452d0a55c1e7a
13 lines
316 B
TypeScript
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!');
|
|
}
|