@plasmicapp/loader-react 1.0.165 → 1.0.168

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.
@@ -74,12 +74,12 @@ export declare function PlasmicRootProvider(props: {
74
74
  * Page path parameters (e.g. {slug: "foo"} if page path is
75
75
  * /products/[slug] and URI is /products/foo).
76
76
  */
77
- pageParams?: Record<string, string>;
77
+ pageParams?: Record<string, string | string[] | undefined>;
78
78
  /**
79
79
  * Page query parameters (e.g. {q: "foo"} if page path is
80
80
  * /some/path?q=foo).
81
81
  */
82
- pageQuery?: Record<string, string>;
82
+ pageQuery?: Record<string, string | string[] | undefined>;
83
83
  }): JSX.Element;
84
84
  export declare function usePlasmicRootContext(): PlasmicRootContextValue | undefined;
85
85
  export {};