1 // Copyright 2022-present 650 Industries. All rights reserved.
2 
3 #pragma once
4 #ifdef __cplusplus
5 
6 #include <ABI49_0_0jsi/ABI49_0_0jsi.h>
7 
8 namespace jsi = ABI49_0_0facebook::jsi;
9 
10 namespace ABI49_0_0expo {
11 
12 /**
13  Converts `jsi::Array` to a vector with prop name ids (`std::vector<jsi::PropNameID>`).
14  */
15 std::vector<jsi::PropNameID> jsiArrayToPropNameIdsVector(jsi::Runtime &runtime, const jsi::Array &array);
16 
17 } // namespace ABI49_0_0expo
18 
19 #endif // __cplusplus
20