expo-doctor 1.14.0-canary-20250811-5c940c0 → 1.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ import { DoctorCheck, DoctorCheckParams, DoctorCheckResult } from './checks.types';
2
+ export declare class AutolinkingDependencyDuplicatesCheck implements DoctorCheck {
3
+ description: string;
4
+ sdkVersionRange: string;
5
+ runAsync({ projectRoot, exp }: DoctorCheckParams): Promise<DoctorCheckResult>;
6
+ }
@@ -0,0 +1,3 @@
1
+ export declare function importAutolinkingExportsFromProject(projectDir: string): typeof import('expo/internal/unstable-autolinking-exports');
2
+ export declare class ExpoExportMissingError extends Error {
3
+ }
@@ -34,7 +34,7 @@ interface DoctorPackageJsonConfig {
34
34
  export declare function getDoctorConfig(pkg: any): DoctorPackageJsonConfig;
35
35
  export declare function getReactNativeDirectoryCheckExcludes(pkg: any): (string | RegExp)[];
36
36
  export declare function getReactNativeDirectoryCheckEnabled(exp: ExpoConfig, pkg: PackageJSONConfig): boolean;
37
- export declare function getReactNativeDirectoryCheckListUnknownPackagesEnabled(pkg: any): boolean;
37
+ export declare function getReactNativeDirectoryCheckListUnknownPackagesEnabled(pkg: any): boolean | null;
38
38
  /**
39
39
  * Get status of appConfigFieldsNotSyncedCheck check
40
40
  * @param pkg package.json
@@ -0,0 +1,5 @@
1
+ export declare const checkLibraries: (packageNames: string[]) => Promise<Record<string, ReactNativeDirectoryCheckResult> | null>;
2
+ export type ReactNativeDirectoryCheckResult = {
3
+ unmaintained: boolean;
4
+ newArchitecture: 'supported' | 'unsupported' | 'untested';
5
+ };
@@ -0,0 +1 @@
1
+ export declare function getVersionedNativeModuleNamesAsync(projectRoot: string, expoSdkVersion: string): Promise<string[] | null>;