mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
475 B
TypeScript
10 lines
475 B
TypeScript
// Type definitions for gematriya 2.0
|
|
// Project: https://github.com/Scimonster/js-gematriya
|
|
// Definitions by: Mendy Berger <https://github.com/MendyBerger>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function gematriya(num: number, options?: { limit?: number, punctuate?: boolean, geresh?: boolean }): string;
|
|
declare function gematriya(str: string, options?: { order?: boolean }): number;
|
|
export = gematriya;
|
|
export as namespace gematriya;
|