this repo has no description
at main 449 B view raw
1import { Node, NodeType } from "../structs/node"; 2import { NodeDefinition } from "./Nodes"; 3 4export let NodePressKey: NodeDefinition = { 5 os: 'windows', 6 7 isSingle: true, 8 name: 'Press Key', 9 typeId: 'presskey', 10 11 w: 200, 12 13 statics: [ 14 { 15 name: "Key", 16 type: NodeType.String, 17 value: "" 18 } 19 ], 20 21 inputs: [ 22 { 23 name: "Flow", 24 type: NodeType.Flow, 25 } 26 ], 27 28 onStaticsUpdate: async ( _node: Node ) => {} 29};