Decoder API Reference
Overview
Detailed API documentation for the decoder module.
Functions
decode
typescript
function decode(data: string): any
Decodes the input string into its original format.
decodeWithOptions
typescript
function decodeWithOptions(data: string, options: DecodeOptions): any
Decodes the input string with specific decoding options.
Types
DecodeOptions
typescript
interface DecodeOptions {
// Add your options interface here
}
Examples
[Add detailed examples]