NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/g2/lib/interaction/action/callback.d.ts

18 lines
338 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { ActionCallback } from '../../interface';
import Action from './base';
/** 回调函数构建的 Action */
export default class CallbackAction extends Action {
/**
*
*/
callback: ActionCallback;
/**
*
*/
execute(): void;
/**
*
*/
destroy(): void;
}