feat: replace banned Function type with an explicit signature

This commit is contained in:
Rohit
2025-04-29 20:27:22 +05:30
parent 882b25c771
commit 01ab958b60

View File

@@ -43,9 +43,9 @@ interface InterpreterOptions {
binaryCallback: (output: any, mimeType: string) => (void | Promise<void>);
debug: boolean;
debugChannel: Partial<{
activeId: Function,
debugMessage: Function,
setActionType: Function,
activeId: (id: number) => void,
debugMessage: (msg: string) => void,
setActionType: (type: string) => void,
}>
}