@nodata/render
Version:
Allows to dynamically render nodata components
10 lines (9 loc) • 334 B
TypeScript
import { Datablock, DatablockView } from '@nodata/action';
export interface DatablockRendererPlugin {
initialize(datablockView: DatablockView, datablock: Datablock, data: any): this;
updateData(data: any): this;
on(target: Element | string): this;
render(): this;
destroy(): this;
disableAnimations(): this;
}