(
dataTypeId: VersionedUrl,
propertyValue: string | number | boolean,
)
| 1160 | type PropRecord = Record<string, PropertyWithMetadata>; |
| 1161 | |
| 1162 | const value = ( |
| 1163 | dataTypeId: VersionedUrl, |
| 1164 | propertyValue: string | number | boolean, |
| 1165 | ): PropertyWithMetadata => ({ |
| 1166 | value: propertyValue, |
| 1167 | metadata: { dataTypeId }, |
| 1168 | }); |
| 1169 | const list = ( |
| 1170 | dataTypeId: VersionedUrl, |
| 1171 | values: (string | number | boolean)[], |
no outgoing calls
no test coverage detected