8 lines
379 B
TypeScript
8 lines
379 B
TypeScript
import { SplashScreenImageResizeModeType } from '../constants';
|
|
/**
|
|
* @param androidMainPath Path to the main directory containing code and resources in Android project. In general that would be `android/app/src/main`.
|
|
*/
|
|
export default function configureDrawableXml(androidMainPath: string, config?: {
|
|
imageResizeMode?: SplashScreenImageResizeModeType;
|
|
}): Promise<void>;
|