// Type definitions for gematriya 2.0 // Project: https://github.com/Scimonster/js-gematriya // Definitions by: Mendy Berger // 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;