2020-07-21 13:20:51 +00:00
|
|
|
declare module "app/common/MemBuffer" {
|
|
|
|
const MemBuffer: any;
|
|
|
|
type MemBuffer = any;
|
|
|
|
export = MemBuffer;
|
|
|
|
}
|
2021-08-26 16:35:11 +00:00
|
|
|
|
|
|
|
declare module "locale-currency/map" {
|
|
|
|
const Map: Record<string, string>;
|
|
|
|
type Map = Record<string, string>;
|
|
|
|
export = Map;
|
|
|
|
}
|
|
|
|
|
|
|
|
declare namespace Intl {
|
|
|
|
class DisplayNames {
|
2021-09-23 18:09:58 +00:00
|
|
|
public static supportedLocalesOf(locales: string | string[]): string[];
|
2021-08-26 16:35:11 +00:00
|
|
|
constructor(locales?: string, options?: object);
|
|
|
|
public of(code: string): string;
|
|
|
|
}
|
|
|
|
|
|
|
|
class Locale {
|
|
|
|
public region: string;
|
2021-09-23 18:09:58 +00:00
|
|
|
public language: string;
|
2021-08-26 16:35:11 +00:00
|
|
|
constructor(locale: string);
|
|
|
|
}
|
|
|
|
}
|
2022-02-21 14:45:17 +00:00
|
|
|
|
|
|
|
declare module '@gristlabs/moment-guess/dist/bundle.js';
|