UNPKG

gg-editor

Version:

A visual graph editor based on G6 and React

8 lines (7 loc) 256 B
import { NodeModel } from '../../../common/interfaces'; import { BaseCommand } from './base'; export interface PasteCommandParams { models: NodeModel[]; } declare const pasteCommand: BaseCommand<PasteCommandParams>; export default pasteCommand;