Mark currency info as deprecated in TS

pull/3278/head
Anton 2024-03-20 10:25:33 +01:00
parent 2000193011
commit 436ead41b3
1 changed files with 2 additions and 0 deletions

View File

@ -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,