mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
* added type definitions for jp-conversion * added type definitions for jp-conversion * linting fixes
10 lines
441 B
TypeScript
10 lines
441 B
TypeScript
// Type definitions for jp-conversion 0.0
|
|
// Project: https://github.com/Pomax/node-jp-conversion
|
|
// Definitions by: Nicolas Newman <https://github.com/NicolasNewman>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export function convert(
|
|
input: string,
|
|
): false | { kanji: false | string; hiragana: false | string; katakana: false | string; romaji: false | string };
|
|
export function romanise(kana: string): string;
|