@malloydata/malloy-explorer 0.0.264-dev250418182827 → 0.0.266-dev250422000026

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.
@@ -1,9 +1,3 @@
1
- import * as Malloy from "@malloydata/malloy-interfaces";
2
- declare export interface QueryEditorProps {
3
- source: Malloy.SourceInfo;
4
- query?: Malloy.Query;
5
- setQuery?: (query: Malloy.Query | void) => void;
6
- }
7
1
  declare export function QueryEditor():
8
2
  | $Exports<"react/jsx-runtime">["JSX"]["Element"]
9
3
  | null;
@@ -1,3 +1,6 @@
1
- declare export function SourcePanel():
2
- | $Exports<"react/jsx-runtime">["JSX"]["Element"]
3
- | null;
1
+ declare export interface SourcePanelProps {
2
+ onRefresh: () => void;
3
+ }
4
+ declare export function SourcePanel(
5
+ $$param0$: SourcePanelProps,
6
+ ): $Exports<"react/jsx-runtime">["JSX"]["Element"] | null;