- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
18 lines
965 B
TypeScript
18 lines
965 B
TypeScript
import { SearchOptions } from '../types';
|
|
/**
|
|
* Find the path to the `package.json` of the closest project in the given project root.
|
|
*/
|
|
export declare function getProjectPackageJsonPathAsync(projectRoot: string): Promise<string>;
|
|
/**
|
|
* Merges autolinking options from different sources (the later the higher priority)
|
|
* - options defined in package.json's `expo.autolinking` field
|
|
* - platform-specific options from the above (e.g. `expo.autolinking.apple`)
|
|
* - options provided to the CLI command
|
|
*/
|
|
export declare function mergeLinkingOptionsAsync<OptionsType extends SearchOptions>(providedOptions: OptionsType): Promise<OptionsType>;
|
|
/**
|
|
* Resolves autolinking search paths. If none is provided, it accumulates all node_modules when
|
|
* going up through the path components. This makes workspaces work out-of-the-box without any configs.
|
|
*/
|
|
export declare function resolveSearchPathsAsync(searchPaths: string[] | null, cwd: string): Promise<string[]>;
|