declarations
Version:
[](https://www.npmjs.com/package/declarations)
18 lines (14 loc) • 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;
}