Skip to content

Encoder API Reference

Overview

Detailed API documentation for the encoder module.

Functions

encode

typescript
function encode(data: any): string

Encodes the input data into a string format.

encodeWithOptions

typescript
function encodeWithOptions(data: any, options: EncodeOptions): string

Encodes the input data with specific encoding options.

Types

EncodeOptions

typescript
interface EncodeOptions {
  // Add your options interface here
}

Examples

[Add detailed examples]

Released under the MIT License.