angular-gettext.d.ts 215 B

123456789
  1. import * as ng from 'angular';
  2. // getString: function (string, scope, context) {
  3. declare namespace ng.gettext {
  4. interface gettextCatalog {
  5. getString(string: string, scope?: any, context?: string): string;
  6. }
  7. }