first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
import { MemoryContext } from './context-stubs';
export type MockContextConfig = string | string[] | MemoryContext | {
appDir: string;
overrides: MemoryContext;
};
export declare function getMockConfig(context: MockContextConfig, metaOnly?: boolean): {
screens: {
__root: {
initialRouteName: undefined;
screens: Record<string, import("../getReactNavigationConfig").Screen>;
path: string;
};
} | {
__root: {
initialRouteName: undefined;
screens: Record<string, import("../getReactNavigationConfig").Screen>;
path: string;
};
} | {
__root: {
initialRouteName: undefined;
screens: Record<string, import("../getReactNavigationConfig").Screen>;
path: string;
};
} | {
__root: {
initialRouteName: undefined;
screens: Record<string, import("../getReactNavigationConfig").Screen>;
path: string;
};
};
};
export declare function getMockContext(context: MockContextConfig): ((id: string) => any) & {
keys: () => string[];
resolve: (key: string) => string;
id: string;
};
//# sourceMappingURL=mock-config.d.ts.map