type ShouldBypassAcpDispatchForCommand =
(typeofimport("./dispatch-acp-command-bypass.js"))["shouldBypassAcpDispatchForCommand"];
type TryDispatchAcpReply = (typeofimport("./dispatch-acp.js"))["tryDispatchAcpReply"];
let dispatchAcpPromise: Promise<typeofimport("./dispatch-acp.js")> | null = null;
let dispatchAcpCommandBypassPromise: Promise< typeofimport("./dispatch-acp-command-bypass.js")
> | null = null;
function loadDispatchAcp() {
dispatchAcpPromise ??= import("./dispatch-acp.js"); return dispatchAcpPromise;
}
function loadDispatchAcpCommandBypass() {
dispatchAcpCommandBypassPromise ??= import("./dispatch-acp-command-bypass.js"); return dispatchAcpCommandBypassPromise;
}
export async function shouldBypassAcpDispatchForCommand(
...args: Parameters<ShouldBypassAcpDispatchForCommand>
): Promise<Awaited<ReturnType<ShouldBypassAcpDispatchForCommand>>> { const mod = await loadDispatchAcpCommandBypass(); return mod.shouldBypassAcpDispatchForCommand(...args);
}
export async function tryDispatchAcpReply(
...args: Parameters<TryDispatchAcpReply>
): Promise<Awaited<ReturnType<TryDispatchAcpReply>>> { const mod = await loadDispatchAcp(); return await mod.tryDispatchAcpReply(...args);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.