{"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;\n\nexport const SplashScreenStatusBarStyle = {\n DEFAULT: 'default',\n LIGHT_CONTENT: 'light-content',\n DARK_CONTENT: 'dark-content',\n} as const;\nexport type SplashScreenStatusBarStyleType = TypeFromConstObject;\n\ntype TypeFromConstObject = T[keyof T];\n"]}