From bb9ee7f4e11a771a074ee36172ef4d9638bf9fef Mon Sep 17 00:00:00 2001 From: pancake Date: Tue, 16 Jan 2024 15:19:56 +0100 Subject: [PATCH] Add missing type definitions for the new r2pipe callbacks --- nodejs/r2pipe/r2pipe.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nodejs/r2pipe/r2pipe.d.ts b/nodejs/r2pipe/r2pipe.d.ts index 86d5fb7..f8293dc 100644 --- a/nodejs/r2pipe/r2pipe.d.ts +++ b/nodejs/r2pipe/r2pipe.d.ts @@ -3,6 +3,13 @@ export class R2Pipe { cmd(string): string; cmdj(string): any; + cmdAt(string, string|number): any; + call(string): string; + callj(string): any; + callAt(string, string|number): any; + plugin(string, any): boolean; + unload(string, string): boolean; + log(string); } export default class r2pipe {