summaryrefslogtreecommitdiff
path: root/decl/jed.d.ts
blob: b156702e094c20a38eca1ac154e47b21ac06f948 (plain)
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;
}