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-05-08 20:21:23 +0300
committerGitHub <noreply@github.com>2022-05-08 20:21:23 +0300
commit5e516617b59db67cdab711596c22096909ea5ba1 (patch)
treebb83985e3e34f142045f5d8ec2181f07f4a89279 /plugins/CoreVue/types/index.d.ts
parente080cecdb9c0113e3614570fdd711f5521f6a13f (diff)
tweak QueryParameters type in index.d.ts to better match arbitrary object types (#19191)
* tweak QueryParameters type in index.d.ts to better match arbitrary object types * make sure github action takes into account changes in CoreVue types
Diffstat (limited to 'plugins/CoreVue/types/index.d.ts')
-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 c834c5caa1..f04403fcf7 100644
--- a/plugins/CoreVue/types/index.d.ts
+++ b/plugins/CoreVue/types/index.d.ts
@@ -11,7 +11,7 @@ import { ExtendedKeyboardEvent } from 'mousetrap';
declare global {
type QueryParameterValue = string | number | null | undefined | QueryParameterValue[];
- type QueryParameters = {[name: string]: QueryParameterValue | QueryParameters};
+ type QueryParameters = Record<string, QueryParameterValue | QueryParameters>;
interface WrappedEventListener extends Function {
wrapper?: (evt: Event) => void;