/** * 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 function getUser() { return Promise.reject(); } export async function graphQLQuery(query: string) { return Promise.reject(); } export function logoutUser(): Promise { return Promise.reject(); } export async function shareFlipperData( trace: string, ): Promise< | { id: string, os: 'string', deviceType: string, plugins: string[], fileUrl: string, flipperUrl: string, } | { error: string, error_class: string, stacktrace: string, }, > { new window.Notification('Feature not implemented'); return Promise.reject(); } export async function writeKeychain(token: string) { return Promise.reject(); }