/** * 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 type LogManager from './Logger'; import type {Store} from '../reducers/index.js'; export default class BugReporter { constructor(logManager: LogManager, store: Store) {} async report(title: string, body: string): Promise { return Promise.resolve(-1); } }