@fy-/fws-vue 2.0.39 → 2.0.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types.d.ts +18 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -58,6 +58,24 @@ declare module "vue" {
|
|
|
58
58
|
$formatDatetime: typeof formatDatetime;
|
|
59
59
|
$formatDate: typeof formatDate;
|
|
60
60
|
$getContrastingTextColor: typeof getContrastingTextColor;
|
|
61
|
+
$formatNumber: (value: number) => string;
|
|
62
|
+
}
|
|
63
|
+
export interface GlobalComponents {
|
|
64
|
+
ClientOnly: typeof ClientOnly;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
declare module "@vue/runtime-core" {
|
|
69
|
+
export interface ComponentCustomProperties {
|
|
70
|
+
$t: typeof i18next.t;
|
|
71
|
+
$eventBus: Emitter<Events>;
|
|
72
|
+
$cropText: typeof cropText;
|
|
73
|
+
$formatBytes: typeof formatBytes;
|
|
74
|
+
$formatTimeago: typeof formatTimeago;
|
|
75
|
+
$formatDatetime: typeof formatDatetime;
|
|
76
|
+
$formatDate: typeof formatDate;
|
|
77
|
+
$getContrastingTextColor: typeof getContrastingTextColor;
|
|
78
|
+
$formatNumber: (value: number) => string;
|
|
61
79
|
}
|
|
62
80
|
export interface GlobalComponents {
|
|
63
81
|
ClientOnly: typeof ClientOnly;
|