mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Fixed CI build errors in https://travis-ci.org/borisyankov/DefinitelyTyped/builds/70185499
This commit is contained in:
Vendored
+7
-3
@@ -13,12 +13,16 @@ interface NumberFormatterOptions {
|
||||
useGrouping?: boolean;
|
||||
}
|
||||
|
||||
interface Cldr {
|
||||
/* TODO: add typings */
|
||||
}
|
||||
|
||||
interface GlobalizeStatic {
|
||||
load(jsonData: any);
|
||||
locale(locale: string);
|
||||
load(jsonData: any): void;
|
||||
locale(locale: string): Cldr;
|
||||
|
||||
numberFormatter(options?: NumberFormatterOptions): (value: number) => string;
|
||||
formatNumber(value, options?: NumberFormatterOptions): string;
|
||||
formatNumber(value:number, options?: NumberFormatterOptions): string;
|
||||
}
|
||||
|
||||
declare var Globalize: GlobalizeStatic;
|
||||
|
||||
Reference in New Issue
Block a user