generaltranslation 7.0.0-alpha.3 → 7.0.0-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -36,7 +36,7 @@ type GTConstructorParams = {
36
36
  * locales: ['en-US', 'es-ES', 'fr-FR']
37
37
  * });
38
38
  */
39
- export default class GT {
39
+ declare class GT {
40
40
  /** Base URL for the translation service API */
41
41
  baseUrl: string;
42
42
  /** Project ID for the translation service */
@@ -513,4 +513,4 @@ export default class GT {
513
513
  */
514
514
  static isSupersetLocale(superLocale: string, subLocale: string): boolean;
515
515
  }
516
- export {};
516
+ export default GT;