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-14 00:58:39 +0300
committerGitHub <noreply@github.com>2022-02-14 00:58:39 +0300
commit9e47cd0259d17f961a534029a3e322ef97d0da9a (patch)
tree0d66f45c2fe55f6b18584b8eb256c884ca1eb10a /plugins
parent840074622c71349aa5abd4b7a954894a9686f93b (diff)
Add getBaseDatePickerOptions() method to global type defintion file. (#18767)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreVue/types/index.d.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/CoreVue/types/index.d.ts b/plugins/CoreVue/types/index.d.ts
index 336e397f95..9c1461cee0 100644
--- a/plugins/CoreVue/types/index.d.ts
+++ b/plugins/CoreVue/types/index.d.ts
@@ -150,6 +150,7 @@ declare global {
hasUserCapability(capability: string): boolean;
getBaseDatePickerOptions(defaultDate?: Date|null): {[key: string]: any};
getSparklineColors(): SparklineColors;
+ getBaseDatePickerOptions(defaultDate: Date|null): any;
on(eventName: string, listener: WrappedEventListener): void;
off(eventName: string, listener: WrappedEventListener): void;