/** * Action to redo an action on a remote client */ export interface RemoteRedoAction { kind: typeof RemoteRedoAction.KIND; } export declare namespace RemoteRedoAction { /** * Kind of RemoteRedoAction */ const KIND = "remoteRedoAction"; /** * Evaluates if the provided action is a RemoteRedoAction * * @param action the Action to check * @returns true if the action is a RemoteRedoAction */ function isRemoteRedoAction(action: any): action is RemoteRedoAction; } //# sourceMappingURL=remoteRedoAction.d.ts.map