@ignore
| 6220 | |
| 6221 | /** @ignore */ |
| 6222 | class Uint8Array$ extends transform( |
| 6223 | Array$(Uint8).annotations({ |
| 6224 | description: "an array of 8-bit unsigned integers to be decoded into a Uint8Array" |
| 6225 | }), |
| 6226 | Uint8ArrayFromSelf, |
| 6227 | { |
| 6228 | strict: true, |
| 6229 | decode: (i) => Uint8Array.from(i), |
| 6230 | encode: (a) => Array.from(a) |
| 6231 | } |
| 6232 | ).annotations({ identifier: "Uint8Array" }) {} |
| 6233 | |
| 6234 | export { |
| 6235 | /** |
nothing calls this directly
no test coverage detected
searching dependent graphs…