UNPKG

@zxh19890103/wik

Version:

The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.

11 lines (10 loc) 205 B
export interface WithInput<D = any> { /** * intial data mode will receive */ onInitInput?(data: D): void; /** * The data model will receive */ onInput(data: D): void; }