1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { actions as nodeActions } from './node'
// TODO: replace this with options.isClient
/**
* An object that maps the names of actions.
*/
export const actions = {
/**
* The actions related to nodes, imported from the node module.
*/
...nodeActions,
/**
* Disable actions that should not be handled on the client.
*/
actors() {},
/**
* Disable actions that should not be handled on the client.
*/
components() {},
/**
* Disable actions that should not be handled on the client.
*/
entities() {},
/**
* Disable actions that should not be handled on the client.
*/
symbol() {},
/**
* Disable actions that should not be handled on the client.
*/
symbols() {}
}
export default actions