/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @noformat * @oncall react_native * @generated SignedSource<<15f603afc860c64c7acc5a6cfe2a6717>> * * This file was translated from Flow by scripts/generateTypeScriptDefinitions.js * Original file: packages/metro/src/DeltaBundler/Transformer.js * To regenerate, run: * js1 build metro-ts-defs (internal) OR * yarn run build-ts-defs (OSS) */ import type {TransformResult, TransformResultWithSource} from '../DeltaBundler'; import type {TransformOptions} from './Worker'; import type {ConfigT} from 'metro-config'; import WorkerFarm from './WorkerFarm'; import {Cache} from 'metro-cache'; type GetOrComputeSha1Fn = ( $$PARAM_0$$: string, ) => Promise>; declare class Transformer { _config: ConfigT; _cache: Cache; _baseHash: string; _getSha1: GetOrComputeSha1Fn; _workerFarm: WorkerFarm; constructor( config: ConfigT, opts: Readonly<{getOrComputeSha1: GetOrComputeSha1Fn}>, ); transformFile( filePath: string, transformerOptions: TransformOptions, fileBuffer?: Buffer, ): Promise; end(): Promise; } export default Transformer;