UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

18 lines (17 loc) 338 B
import { ActionCallback } from '../../interface'; import Action from './base'; /** 回调函数构建的 Action */ export default class CallbackAction extends Action { /** * 回调函数 */ callback: ActionCallback; /** * 执行 */ execute(): void; /** * 销毁 */ destroy(): void; }