/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ import {GraphFileUpload, GraphResponse} from 'flipper-common'; /* eslint-disable @typescript-eslint/no-unused-vars */ export async function internGraphPOSTAPIRequest( endpoint: string, formFields: { [key: string]: any; }, fileFields: Record, options: { timeout?: number; internGraphUrl?: string; }, token: string, ): Promise { throw new Error('Feature not implemented'); } export async function internGraphGETAPIRequest( endpoint: string, params: { [key: string]: any; }, _options: { timeout?: number; internGraphUrl?: string; }, token: string, ): Promise { throw new Error('Feature not implemented'); }