* Encode the provided string into an array of bytes using the provided * encoding.
(text: string, encoding: string)
| 44 | * encoding. |
| 45 | */ |
| 46 | encode(text: string, encoding: string): Uint8Array; |
| 47 | /** Decode the provided bytes into a string using the provided encoding. */ |
| 48 | decode(bytes: Uint8Array, encoding: string): string; |
| 49 |
no outgoing calls