Migrate BugReporter
Summary: _typescript_ Reviewed By: danielbuechele Differential Revision: D16666761 fbshipit-source-id: 7dc1c21c5c9bdf56908af4e251de16dad14cae38
This commit is contained in:
committed by
Facebook Github Bot
parent
3c2d9973e5
commit
c5563be56b
16
src/fb-stubs/BugReporter.tsx
Normal file
16
src/fb-stubs/BugReporter.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* 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
|
||||
*/
|
||||
|
||||
import {Logger} from '../fb-interfaces/Logger';
|
||||
import {Store} from '../reducers/index';
|
||||
|
||||
export default class BugReporter {
|
||||
constructor(logManager: Logger, store: Store) {}
|
||||
async report(title: string, body: string): Promise<number> {
|
||||
return Promise.resolve(-1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user