mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
javascript-time-ago type definitions (#40618)
* Adding tsconfig and tslint * Adding main interface type definitions * Adding tests * Updating tsconfig * Adding locale type definitions * Fix config * Fix linting * Updating tsconfig to use files property * Updating typescript version * Header fix * Trimming newlines for dtslint * Potential CI Fix * Removing strict flag from tsconfig * Shuffling types for less duplication * Adding newline for linting
This commit is contained in:
parent
7926ae9ff5
commit
1f7634ec0d
27
types/javascript-time-ago/index.d.ts
vendored
Normal file
27
types/javascript-time-ago/index.d.ts
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
// Type definitions for javascript-time-ago 2.0
|
||||
// Project: https://github.com/catamphetamine/javascript-time-ago
|
||||
// Definitions by: Erik Burton <https://github.com/erikburt>
|
||||
// Henry Nguyen <https://github.com/HenryNguyen5>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
import { Locale, TimeUnit, Duration, DefaultFormats, RTFFormatter, Formats, QuantifyType } from "./locale";
|
||||
|
||||
export = TimeAgo;
|
||||
|
||||
declare class TimeAgo {
|
||||
constructor(locales?: string | string[]);
|
||||
|
||||
format(input: Date | number, style?: string): string;
|
||||
formatNumber(number: number): string;
|
||||
formatValue(value: Date | number, unit: TimeUnit, localeData: Duration): string;
|
||||
getFormatter(flavor: DefaultFormats): RTFFormatter;
|
||||
getLocaleData(format?: Formats): Duration; // Defaults to "long"
|
||||
getRule(value: Date | number, unit: TimeUnit, localeData: Duration): string;
|
||||
|
||||
static addLocale(localeData: Locale): void;
|
||||
static locale(localeData: Locale): void;
|
||||
static getDefaultLocale(): string;
|
||||
static intlDateTimeFormatSupported(): boolean;
|
||||
static intlDateTimeFormatSupportedLocale(locale: string): string | void;
|
||||
static setDefaultLocale(locale: string): void;
|
||||
}
|
||||
32
types/javascript-time-ago/javascript-time-ago-tests.ts
Normal file
32
types/javascript-time-ago/javascript-time-ago-tests.ts
Normal file
@ -0,0 +1,32 @@
|
||||
import TimeAgo from "javascript-time-ago";
|
||||
import en from "javascript-time-ago/locale/en";
|
||||
import to from "javascript-time-ago/locale/to";
|
||||
import zhHansHK from "javascript-time-ago/locale/zh-Hant-HK";
|
||||
|
||||
// Statically add locales
|
||||
TimeAgo.locale(en);
|
||||
TimeAgo.addLocale(to);
|
||||
TimeAgo.addLocale(zhHansHK);
|
||||
|
||||
TimeAgo.intlDateTimeFormatSupportedLocale("en");
|
||||
|
||||
const ta = new TimeAgo();
|
||||
|
||||
// Format one minute ago using twitter style
|
||||
ta.format(new Date().getTime() - 60 * 1000, "twitter");
|
||||
|
||||
// Format random date using "twitter" style
|
||||
ta.format(111111, "twitter");
|
||||
|
||||
// Format a number using default style
|
||||
ta.formatNumber(1111111);
|
||||
|
||||
// Format value using in hour units using the long english formatting
|
||||
ta.formatValue(new Date(), "hour", en.long);
|
||||
|
||||
// Get formatters
|
||||
ta.getFormatter("long");
|
||||
ta.getLocaleData("long");
|
||||
|
||||
// Get rule used to format
|
||||
ta.getRule(new Date(), "hour", en.long);
|
||||
15
types/javascript-time-ago/locale/af/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/af/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "af";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/am/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/am/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "am";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ar-AE/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ar-AE/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ar-AE";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ar/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ar/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ar";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/as/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/as/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "as";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ast/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ast/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ast";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/az/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/az/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "az";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/be/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/be/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "be";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/bg/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/bg/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "bg";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/bn/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/bn/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "bn";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/br/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/br/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "br";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/bs-Cyrl/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/bs-Cyrl/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "bs-Cyrl";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/bs/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/bs/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "bs";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ca/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ca/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ca";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ccp/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ccp/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ccp";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ce/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ce/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ce";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/chr/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/chr/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "chr";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/cs/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/cs/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "cs";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/cy/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/cy/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "cy";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/da/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/da/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "da";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
16
types/javascript-time-ago/locale/de/index.d.ts
vendored
Normal file
16
types/javascript-time-ago/locale/de/index.d.ts
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "de";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
"long-time": Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/dsb/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/dsb/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "dsb";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/dz/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/dz/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "dz";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ee/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ee/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ee";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
16
types/javascript-time-ago/locale/el/index.d.ts
vendored
Normal file
16
types/javascript-time-ago/locale/el/index.d.ts
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "el";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
tiny: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
20
types/javascript-time-ago/locale/en/index.d.ts
vendored
Normal file
20
types/javascript-time-ago/locale/en/index.d.ts
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "en";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
"long-convenient": Duration;
|
||||
"long-time": Duration;
|
||||
"short-convenient": Duration;
|
||||
"short-time": Duration;
|
||||
tiny: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
14
types/javascript-time-ago/locale/es-AR/index.d.ts
vendored
Normal file
14
types/javascript-time-ago/locale/es-AR/index.d.ts
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "es-AR";
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/es-MX/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/es-MX/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "es-MX";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
14
types/javascript-time-ago/locale/es-PY/index.d.ts
vendored
Normal file
14
types/javascript-time-ago/locale/es-PY/index.d.ts
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "es-PY";
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
13
types/javascript-time-ago/locale/es-SV/index.d.ts
vendored
Normal file
13
types/javascript-time-ago/locale/es-SV/index.d.ts
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "es-SV";
|
||||
long: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/es-US/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/es-US/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "es-US";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
16
types/javascript-time-ago/locale/es/index.d.ts
vendored
Normal file
16
types/javascript-time-ago/locale/es/index.d.ts
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "es";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
tiny: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/et/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/et/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "et";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/eu/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/eu/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "eu";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/fa/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/fa/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "fa";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/fi/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/fi/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "fi";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/fil/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/fil/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "fil";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/fo/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/fo/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "fo";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/fr-CA/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/fr-CA/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "fr-CA";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/fr/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/fr/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "fr";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/fur/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/fur/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "fur";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/fy/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/fy/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "fy";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ga/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ga/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ga";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/gd/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/gd/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "gd";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/gl/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/gl/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "gl";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/gu/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/gu/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "gu";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/he/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/he/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "he";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/hi/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/hi/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "hi";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/hr/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/hr/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "hr";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/hsb/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/hsb/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "hsb";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/hu/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/hu/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "hu";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/hy/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/hy/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "hy";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ia/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ia/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ia";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/id/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/id/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "id";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
52
types/javascript-time-ago/locale/index.d.ts
vendored
Normal file
52
types/javascript-time-ago/locale/index.d.ts
vendored
Normal file
@ -0,0 +1,52 @@
|
||||
export interface Locale {
|
||||
locale: string;
|
||||
long?: Duration;
|
||||
short?: Duration;
|
||||
narrow?: Duration;
|
||||
tiny?: Duration;
|
||||
"short-time"?: Duration;
|
||||
"short-convenient"?: Duration;
|
||||
"long-time"?: Duration;
|
||||
"long-convenient"?: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export interface Duration {
|
||||
flavour?: Formats;
|
||||
year: Tense;
|
||||
quarter: Tense;
|
||||
month: Tense;
|
||||
week: Tense;
|
||||
day: Tense;
|
||||
hour: Tense;
|
||||
minute: Tense;
|
||||
second: Tense;
|
||||
}
|
||||
|
||||
export interface Tense {
|
||||
previous?: QuantifyType | string;
|
||||
current?: QuantifyType | string;
|
||||
next?: QuantifyType | string;
|
||||
past?: QuantifyType | string;
|
||||
future?: QuantifyType | string;
|
||||
}
|
||||
|
||||
export interface QuantifyType {
|
||||
one: string;
|
||||
two?: string;
|
||||
few?: string;
|
||||
other: string;
|
||||
}
|
||||
|
||||
export interface RTFFormatter {
|
||||
numeric: string;
|
||||
style: DefaultFormats;
|
||||
localeMatcher: string;
|
||||
locale: string;
|
||||
numberFormat: { [key: string]: any };
|
||||
}
|
||||
|
||||
export type TimeUnit = 'now' | 'second' | 'minute' | 'hour' | 'day' | 'week' | 'month' | 'quarter' | 'year';
|
||||
export type DefaultFormats = "long" | "short" | "narrow";
|
||||
export type ExtendedFormats = "tiny" | "short-time" | "short-convenient" | "long-time" | "long-convenient";
|
||||
export type Formats = DefaultFormats | ExtendedFormats;
|
||||
15
types/javascript-time-ago/locale/is/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/is/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "is";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/it/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/it/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "it";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ja/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ja/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ja";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/jgo/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/jgo/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "jgo";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/jv/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/jv/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "jv";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ka/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ka/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ka";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/kea/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/kea/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "kea";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/kk/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/kk/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "kk";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/kl/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/kl/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "kl";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/km/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/km/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "km";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/kn/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/kn/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "kn";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
16
types/javascript-time-ago/locale/ko/index.d.ts
vendored
Normal file
16
types/javascript-time-ago/locale/ko/index.d.ts
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ko";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
tiny: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/kok/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/kok/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "kok";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ksh/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ksh/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ksh";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ku/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ku/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ku";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ky/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ky/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ky";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/lb/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/lb/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "lb";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/lkt/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/lkt/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "lkt";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/lo/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/lo/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "lo";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/lt/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/lt/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "lt";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/lv/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/lv/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "lv";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/mk/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/mk/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "mk";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ml/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ml/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ml";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/mn/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/mn/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "mn";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/mr/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/mr/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "mr";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ms/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ms/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ms";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/mt/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/mt/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "mt";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/my/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/my/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "my";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/mzn/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/mzn/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "mzn";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/nb/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/nb/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "nb";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ne/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ne/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ne";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/nl/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/nl/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "nl";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/nn/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/nn/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "nn";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/or/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/or/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "or";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/pa/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/pa/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "pa";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/pl/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/pl/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "pl";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ps/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ps/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ps";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/pt/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/pt/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "pt";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/qu/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/qu/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "qu";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/ro/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/ro/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ro";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
20
types/javascript-time-ago/locale/ru/index.d.ts
vendored
Normal file
20
types/javascript-time-ago/locale/ru/index.d.ts
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "ru";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
"long-convenient": Duration;
|
||||
"long-time": Duration;
|
||||
"short-convenient": Duration;
|
||||
"short-time": Duration;
|
||||
tiny: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/sah/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/sah/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "sah";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
15
types/javascript-time-ago/locale/sd/index.d.ts
vendored
Normal file
15
types/javascript-time-ago/locale/sd/index.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Generated with https://github.com/erikburt/javascript-time-ago-type-gen
|
||||
|
||||
import { Duration, QuantifyType } from "..";
|
||||
|
||||
declare const locale: Locale;
|
||||
|
||||
interface Locale {
|
||||
locale: "sd";
|
||||
long: Duration;
|
||||
narrow: Duration;
|
||||
short: Duration;
|
||||
quantify: (n: number) => keyof QuantifyType;
|
||||
}
|
||||
|
||||
export = locale;
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user