You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
230 B
Plaintext
8 lines
230 B
Plaintext
11 months ago
|
/**
|
||
|
* @description 撤销 - 逆向操作,删除节点
|
||
|
* @author fangzhicong
|
||
|
*/
|
||
|
import { Compile } from '../type';
|
||
|
export declare function revoke(data: Compile[]): void;
|
||
|
export declare function restore(data: Compile[]): void;
|