DefinitelyTyped/utf8/utf8.d.ts
Nick Zelei 2a24bbb7ca Add definitions for utf8 module (#10329)
* added utf8 module typings

added utf8 module typings

* added tests for utf8

added tests for utf8

* moved import to es6 compatible

moved import to es6 compatible

* updated var to const

updated var to const

* removed interface and moved into module

removed interface and moved into module

* update const with let as it can be changed

update const with let as it can be changed
2016-07-29 21:12:55 -07:00

25 lines
937 B
TypeScript

// Type definitions for utf8 v2.1.1
// Project: https://github.com/mathiasbynens/utf8.js
// Definitions by: Nick Zelei <https://github.com/zelein/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "utf8" {
/**
* A string representing the semantic version number.
*/
let version: string;
/**
* Encodes any given JavaScript string (string) as UTF-8, and returns the UTF-8-encoded version of the string.
* It throws an error if the input string contains a non-scalar value, i.e. a lone surrogate.
* @param {string} inputString
*/
function encode(inputString: string): string;
/**
* Decodes any given UTF-8-encoded string (byteString) as UTF-8, and returns the UTF-8-decoded version of the string.
* It throws an error when malformed UTF-8 is detected.
* @param {string} byteString
*/
function decode(byteString: string): string;
}