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
10 lines (9 loc) • 348 B
TypeScript
import { CPointer } from '../cvizzu.types';
export type FnFree = (rawCPointer: CPointer) => void;
export type CPointerClosure = () => CPointer;
export declare class ObjectRegistry {
private _finalizationRegistry;
constructor(fnFree: FnFree);
register(objectId: CPointerClosure): void;
unregister(objectId: CPointerClosure): void;
}