Files
Schnappix/node_modules/@expo/metro/metro-resolver/errors/InvalidPackageError.d.ts
T

25 lines
684 B
TypeScript

/**
* 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.
*
*
* @format
* @oncall react_native
*/
import type { FileCandidates } from "../types";
declare class InvalidPackageError extends Error {
fileCandidates: FileCandidates;
indexCandidates: FileCandidates;
mainModulePath: string;
packageJsonPath: string;
constructor(opts: {
readonly fileCandidates: FileCandidates;
readonly indexCandidates: FileCandidates;
readonly mainModulePath: string;
readonly packageJsonPath: string;
});
}
export default InvalidPackageError;