@logicflow/extension
Version:
LogicFlow Extensions
17 lines (16 loc) • 511 B
TypeScript
import { h, RectNodeModel, RectNode } from '@logicflow/core';
export declare class ServiceTaskModel extends RectNodeModel {
static extendKey: string;
constructor(data: any, graphModel: any);
}
export declare class ServiceTaskView extends RectNode {
static extendKey: string;
getLabelShape(): h.JSX.Element;
getShape(): h.JSX.Element;
}
export declare const ServiceTask: {
type: string;
view: typeof ServiceTaskView;
model: typeof ServiceTaskModel;
};
export default ServiceTask;