@spacehq/sdk > MovePathsResponse
MovePathsResponse interface
Signature:
export interface MovePathsResponse
Properties
Property | Type | Description |
---|---|---|
off | (type: MovePathsEventType, listener: MovePathsListener) => void | |
on | (type: MovePathsEventType, listener: MovePathsListener) => void | |
once | (type: MovePathsEventType, listener: MovePathsListener) => void | this function should only be used to listen for the 'done' event, since the listener would only be called once. or else you could end up having functions leaking (unless you explicitly call the off() function). |