8 lines
277 B
TypeScript
8 lines
277 B
TypeScript
|
|
import { UUID } from '../UUID';
|
||
|
|
import { CommandsBase } from './CommandsBase';
|
||
|
|
export declare class AgentCommands extends CommandsBase {
|
||
|
|
private animate(anim, run);
|
||
|
|
startAnimations(anim: UUID[]): Promise<void>;
|
||
|
|
stopAnimations(anim: UUID[]): Promise<void>;
|
||
|
|
}
|