Files
DefinitelyTyped/types/jp-conversion/index.d.ts
Nicolas Newman 9c924b23a7 🤖 Merge PR #64704 Add type defintions for jp-conversion by @NicolasNewman
* added type definitions for jp-conversion

* added type definitions for jp-conversion

* linting fixes
2023-03-12 18:09:46 -07:00

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;