import { Command, RequestWrapper } from '../types'; /** * 指令序列,用于包装多个指令的集合操作 */ export default class SequenceCommand implements Command { wrapper: RequestWrapper; entrypoint(seq: (chain: any) => void): RequestWrapper; name(): string; }