mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-20 16:14:57 +08:00
20 lines
470 B
TypeScript
20 lines
470 B
TypeScript
// Type definitions for unorm 1.3.3
|
|
// Project: https://github.com/walling/unorm
|
|
// Definitions by: Christopher Brown <https://github.com/chbrown>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare namespace unorm {
|
|
interface Static {
|
|
nfd(str: string): string;
|
|
nfkd(str: string): string;
|
|
nfc(str: string): string;
|
|
nfkc(str: string): string;
|
|
}
|
|
}
|
|
|
|
declare var unorm: unorm.Static;
|
|
|
|
declare module "unorm" {
|
|
export = unorm;
|
|
}
|