this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 6f2f8a3e2094df48979611edeef827610860f07f 15 lines 359 B view raw
1import { NodeDefinition } from "./Nodes"; 2import { NodeStaticsFloat } from "./Statics/Float"; 3 4import { NodeStaticsInt } from "./Statics/Int"; 5import { NodeStaticsString } from "./Statics/String"; 6 7export let NodeStatics: NodeDefinition = { 8 isSingle: false, 9 name: 'Statics', 10 items: [ 11 NodeStaticsInt, 12 NodeStaticsString, 13 NodeStaticsFloat 14 ] 15}