kitten-cloud-function
Version:
用于编程猫源码云功能(云变量、云列表等)的客户端工具
6 lines (5 loc) • 302 B
TypeScript
import { CommandGroup } from "./command-group";
import { RevocableCommand } from "./revocable-command";
export declare class RevocableCommandGroup<COMMAND_TYPE extends RevocableCommand = RevocableCommand> extends CommandGroup<COMMAND_TYPE> implements RevocableCommand {
revoke(this: this): void;
}