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

14 lines (13 loc) 345 B
import { Plugin, PluginApi, PluginHooks } from '../plugins.js'; export interface ClockApi extends PluginApi { /** Returns the actual time in miliseconds. */ now(): number; } export declare class Clock implements Plugin { meta: { name: string; }; get api(): ClockApi; get hooks(): PluginHooks; private _now; }