Files
DefinitelyTyped/latinize/latinize.d.ts
Giedrius Grabauskas 0032c9b7e5 Added Latinize definitions (#8904)
* latinize.d.ts file created.

* Updated creator link.

* latinize tests created.

* Missing semicolon added.

* Added latinize version.

* Updated naming.
2016-04-17 22:06:19 +09:00

18 lines
487 B
TypeScript

// Type definitions for latinize 0.2.0
// Project: https://github.com/dundalek/latinize
// Definitions by: Giedrius Grabauskas <https://github.com/GiedriusGrabauskas>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare namespace LatinizeModule {
export interface Latinize {
(str: string): string;
characters: { [char: string]: string };
}
}
declare module "latinize" {
let latinize: LatinizeModule.Latinize;
export = latinize;
}