This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-02 02:24:13 +03:00

21 lines
811 B
TypeScript

export declare const SplashScreenImageResizeMode: {
readonly CONTAIN: "contain";
readonly COVER: "cover";
readonly NATIVE: "native";
};
export declare type SplashScreenImageResizeModeType = TypeFromConstObject<typeof SplashScreenImageResizeMode>;
export declare const Platform: {
readonly ANDROID: "android";
readonly IOS: "ios";
readonly ALL: "all";
};
export declare type PlatformType = TypeFromConstObject<typeof Platform>;
export declare const SplashScreenStatusBarStyle: {
readonly DEFAULT: "default";
readonly LIGHT_CONTENT: "light-content";
readonly DARK_CONTENT: "dark-content";
};
export declare type SplashScreenStatusBarStyleType = TypeFromConstObject<typeof SplashScreenStatusBarStyle>;
declare type TypeFromConstObject<T extends object> = T[keyof T];
export {};