File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -165,6 +165,13 @@ export interface BotEvents {
165
165
particle : ( particle : Particle ) => Promise < void > | void
166
166
}
167
167
168
+ export interface CommandBlockOptions {
169
+ mode : number ,
170
+ trackOutput : boolean ,
171
+ conditional : boolean ,
172
+ alwaysActive : boolean
173
+ }
174
+
168
175
export interface Bot extends TypedEmitter < BotEvents > {
169
176
username : string
170
177
protocolVersion : string
@@ -380,13 +387,8 @@ export interface Bot extends TypedEmitter<BotEvents> {
380
387
) => Promise < void >
381
388
382
389
383
- export interface CommandBlockOptions {
384
- mode : number ,
385
- trackOutput : boolean ,
386
- conditional : boolean ,
387
- alwaysActive : boolean
388
- }
389
- export function setCommandBlock ( pos : Vec3 , command : string , options : CommandBlockOptions ) => void
390
+
391
+ setCommandBlock : ( pos : Vec3 , command : string , options : CommandBlockOptions ) => void
390
392
391
393
clickWindow : (
392
394
slot : number ,
Original file line number Diff line number Diff line change 47
47
"mocha" : " ^10.0.0" ,
48
48
"standard" : " ^17.0.0" ,
49
49
"standard-markdown" : " ^7.1.0" ,
50
- "typescript" : " ^5.0.3 "
50
+ "typescript" : " ^5.4.5 "
51
51
}
52
52
}
You can’t perform that action at this time.
0 commit comments