mirror of https://github.com/espruino/BangleApps
Mark currency info as deprecated in TS
parent
2000193011
commit
436ead41b3
|
@ -3,10 +3,12 @@ declare module Locale {
|
||||||
|
|
||||||
type Locale = {
|
type Locale = {
|
||||||
name: string,
|
name: string,
|
||||||
|
/** @deprecated */
|
||||||
currencySym: string,
|
currencySym: string,
|
||||||
dow(date: Date, short?: ShortBoolean): string,
|
dow(date: Date, short?: ShortBoolean): string,
|
||||||
month(date: Date, short?: ShortBoolean): string,
|
month(date: Date, short?: ShortBoolean): string,
|
||||||
number(n: number): string,
|
number(n: number): string,
|
||||||
|
/** @deprecated */
|
||||||
currency(c: number): string,
|
currency(c: number): string,
|
||||||
distance(d: number): string,
|
distance(d: number): string,
|
||||||
speed(s: number): string,
|
speed(s: number): string,
|
||||||
|
|
Loading…
Reference in New Issue