@malloydata/render 0.0.201 → 0.0.202-dev241014185956

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.
@@ -8,4 +8,13 @@ export type QueryOptions = {
8
8
  connection: Promise<DuckDBWASMConnection>;
9
9
  };
10
10
  export declare function createLoader(script: string): LoaderFunction<HtmlRenderer, Args>;
11
+ export declare function loadModel({ script, connection, }: {
12
+ script: string;
13
+ connection: Promise<DuckDBWASMConnection>;
14
+ }): Promise<import("@malloydata/malloy").ModelMaterializer>;
11
15
  export declare function runQuery({ script, source, view, connection, }: QueryOptions): Promise<import("@malloydata/malloy").Result>;
16
+ type RenderOptions = QueryOptions & {
17
+ classes?: '';
18
+ };
19
+ export declare function renderMalloyLegacy(options: RenderOptions): HTMLDivElement;
20
+ export {};