# Installation
> `npm install --save @types/unorm`

# Summary
This package contains type definitions for unorm (https://github.com/walling/unorm).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unorm.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unorm/index.d.ts)
````ts
declare var unorm: unorm.Static;
export = unorm;
export as namespace unorm;

declare namespace unorm {
    interface Static {
        nfd(str: string): string;
        nfkd(str: string): string;
        nfc(str: string): string;
        nfkc(str: string): string;
    }
}

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 15:11:36 GMT
 * Dependencies: none

# Credits
These definitions were written by [Christopher Brown](https://github.com/chbrown).
