knip
Version:
Find and fix unused dependencies, exports and files in your TypeScript and JavaScript projects
21 lines (20 loc) • 755 B
TypeScript
import type { PluginOptions, ResolveConfig } from '../../types/config.ts';
import type { ExpoConfig } from './types.ts';
export declare const getConfig: (localConfig: ExpoConfig, options: PluginOptions) => {
platforms?: ('ios' | 'android' | 'web')[];
notification?: Record<string, unknown>;
updates?: {
enabled?: boolean;
};
backgroundColor?: string;
userInterfaceStyle?: 'automatic' | 'light' | 'dark';
ios?: {
backgroundColor?: string;
};
android?: {
userInterfaceStyle?: 'automatic' | 'light' | 'dark';
};
androidNavigationBar?: Record<string, unknown>;
plugins?: (string | [string, Record<string, unknown>])[];
};
export declare const getDependencies: ResolveConfig<ExpoConfig>;