1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
interface JedInstance { translate: any; ngettext: any; } interface JedConstructor { new(s: any): JedInstance; } declare namespace JedLib { const Jed: JedConstructor; } declare module "jed" { export = JedLib; }