chore: added updated dependencies

This commit is contained in:
SethCohen
2025-06-17 02:48:23 -04:00
parent 0559b87ee8
commit 067d2cb017
5742 changed files with 831074 additions and 37878 deletions
+28
View File
@@ -0,0 +1,28 @@
/**
* 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.
*/
import {TransformOptions} from '@babel/core';
import {SyncTransformer, TransformerCreator} from '@jest/transform';
export declare const createTransformer: TransformerCreator<
SyncTransformer<TransformerConfig>,
TransformerConfig
>;
declare interface TransformerConfig extends TransformOptions {
excludeJestPreset?: boolean;
}
declare const transformerFactory: {
createTransformer: TransformerCreator<
SyncTransformer<TransformerConfig>,
TransformerConfig
>;
};
export default transformerFactory;
export {};