UNPKG

vizzu

Version:

Vizzu is a free, open-source Javascript/C++ library utilizing a generic dataviz engine that generates many types of charts and seamlessly animates between them. It can be used to create static charts but more importantly it is designed for building animat

18 lines (17 loc) 458 B
import { Module } from './module.js'; export interface LoaderOptions { /** The URL for the webassembly binary (cvizzu.wasm). */ wasmUrl?: string; } declare class Loader { private _options; private _loading; constructor(); set options(options: LoaderOptions); get options(): LoaderOptions; initialize(): Promise<Module>; private _loadModule; private _getModuleOptions; } export declare const loader: Loader; export {};