We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2b2987 commit 8aa094aCopy full SHA for 8aa094a
v-next/core/src/types/global-parameters.ts
@@ -1,4 +1,8 @@
1
-import type { ParameterType, ParameterTypeToValueType } from "./common.js";
+import type {
2
+ ParameterType,
3
+ ParameterTypeToValueType,
4
+ ParameterValue,
5
+} from "./common.js";
6
7
/**
8
* A global parameter with an associated value and a default if not provided by
@@ -25,7 +29,7 @@ export interface GlobalParameter<T extends ParameterType = ParameterType> {
25
29
* Runtime Environment.
26
30
*/
27
31
// eslint-disable-next-line @typescript-eslint/no-empty-interface -- To be used through module augmentation
28
-export interface GlobalArguments {}
32
+export interface GlobalArguments extends Record<string, ParameterValue> {}
33
34
35
* An entry in the global parameters map.
0 commit comments