Installation
npm install --save @types/quoted-printable
Summary
This package contains type definitions for quoted-printable (https://github.com/mathiasbynens/quoted-printable).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/quoted-printable.
export as namespace quotedPrintable;
/**
* A string representing the semantic version number.
*/
export const version: string;
/**
* This function takes an encoded byte string (the input
* parameter) and Quoted-Printable-encodes it. Each item
* in the input string represents an octet as per the
* desired character encoding.
*/
export function encode(input: string): string;
/**
* This function takes a string of text (the text parameter)
* and Quoted-Printable-decodes it. The return value is a
* ‘byte string’, i.e. a string of which each item represents
* an octet as per the character encoding that’s being used.
*/
export function decode(input: string): string;
Additional Details
- Last updated: Wed, 18 Oct 2023 11:45:05 GMT
- Dependencies: none
Credits
These definitions were written by Jeffery Grajkowski.