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

1 line
1.1 KiB
Plaintext

{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,2BAA2B,GAAG;IACzC,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;CACR,CAAC;AAKE,QAAA,QAAQ,GAAG;IACtB,OAAO,EAAE,SAAS;IAClB,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACF,CAAC;AAGE,QAAA,0BAA0B,GAAG;IACxC,OAAO,EAAE,SAAS;IAClB,aAAa,EAAE,eAAe;IAC9B,YAAY,EAAE,cAAc;CACpB,CAAC","sourcesContent":["export const SplashScreenImageResizeMode = {\n CONTAIN: 'contain',\n COVER: 'cover',\n NATIVE: 'native',\n} as const;\nexport type SplashScreenImageResizeModeType = TypeFromConstObject<\n typeof SplashScreenImageResizeMode\n>;\n\nexport const Platform = {\n ANDROID: 'android',\n IOS: 'ios',\n ALL: 'all',\n} as const;\nexport type PlatformType = TypeFromConstObject<typeof Platform>;\n\nexport const SplashScreenStatusBarStyle = {\n DEFAULT: 'default',\n LIGHT_CONTENT: 'light-content',\n DARK_CONTENT: 'dark-content',\n} as const;\nexport type SplashScreenStatusBarStyleType = TypeFromConstObject<typeof SplashScreenStatusBarStyle>;\n\ntype TypeFromConstObject<T extends object> = T[keyof T];\n"]}