JSPM

  • Created
  • Published
  • Downloads 134056
  • Score
    100M100P100Q160332F
  • License MIT

TypeScript definitions for text-encoding

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@types/text-encoding) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Installation

    npm install --save @types/text-encoding

    Summary

    This package contains type definitions for text-encoding (https://github.com/inexorabletash/text-encoding).

    Details

    Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/text-encoding.

    index.d.ts

    declare namespace TextEncoding {
        interface TextEncoderOptions {
            NONSTANDARD_allowLegacyEncoding?: boolean | undefined;
        }
        interface TextEncoderStatic {
            (utfLabel?: string, options?: TextEncoderOptions): TextEncoder;
            new(utfLabel?: string, options?: TextEncoderOptions): TextEncoder;
        }
    
        export var TextEncoder: {
            new(utfLabel?: string, options?: TextEncoderOptions): TextEncoder;
            (utfLabel?: string, options?: TextEncoderOptions): TextEncoder;
            encoding: string;
        };
    
        export var TextDecoder: {
            (label?: string, options?: TextDecoderOptions): TextDecoder;
            new(label?: string, options?: TextDecoderOptions): TextDecoder;
            encoding: string;
        };
    }
    
    interface TextEncodeOptions {
        stream?: boolean | undefined;
    }
    
    interface TextDecoderOptions {
        stream?: boolean | undefined;
        fatal?: boolean;
        ignoreBOM?: boolean;
    }
    
    interface TextEncoder {
        readonly encoding: string;
        encode(input?: string, options?: TextEncodeOptions): Uint8Array;
    }
    
    interface TextDecoder {
        readonly encoding: string;
        readonly fatal: boolean;
        readonly ignoreBOM: boolean;
        decode(input?: Uint8Array, options?: TextDecoderOptions): string;
    }
    
    declare module "text-encoding" {
        export = TextEncoding;
    }
    

    Additional Details

    • Last updated: Mon, 25 Nov 2024 01:29:50 GMT
    • Dependencies: none

    Credits

    These definitions were written by Pine Mizune, Mohsen Azimi, and Thomas Nicollet.