(byteArray: ByteArray)
| 59 | }; |
| 60 | |
| 61 | export const readString = (byteArray: ByteArray): string => byteArray.readUTF8String(); |
| 62 | |
| 63 | export function ReadOpacity(byteArray: ByteArray): number { |
| 64 | return byteArray.readUint8(); |
nothing calls this directly
no test coverage detected