Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2022-02-11 20:26:42 +0300
committerGitHub <noreply@github.com>2022-02-11 20:26:42 +0300
commitbf04cd206616096638c45df97c6e6d1e2dbe184c (patch)
tree24c823954280dc5091a0f63f9186823d9d2e7a46
parent8bf7169b10bf31920c65bc15caf57b0c8fa64991 (diff)
Add parameter to getBaseDatePickerOptions method. (#18774)
-rw-r--r--plugins/CoreVue/types/index.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreVue/types/index.d.ts b/plugins/CoreVue/types/index.d.ts
index 653388b65d..336e397f95 100644
--- a/plugins/CoreVue/types/index.d.ts
+++ b/plugins/CoreVue/types/index.d.ts
@@ -148,7 +148,7 @@ declare global {
updatePeriodParamsFromUrl(): void;
updateDateInTitle(date: string, period: string): void;
hasUserCapability(capability: string): boolean;
- getBaseDatePickerOptions(): {[key: string]: any};
+ getBaseDatePickerOptions(defaultDate?: Date|null): {[key: string]: any};
getSparklineColors(): SparklineColors;
on(eventName: string, listener: WrappedEventListener): void;