From 51e72d41c29e861b24784c8e29b14849a906b181 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 31 Jan 2026 06:32:15 +0000 Subject: [PATCH] fix: restore embedded extension discovery typings --- src/types/pi-coding-agent.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/types/pi-coding-agent.d.ts diff --git a/src/types/pi-coding-agent.d.ts b/src/types/pi-coding-agent.d.ts new file mode 100644 index 000000000..a96296a39 --- /dev/null +++ b/src/types/pi-coding-agent.d.ts @@ -0,0 +1,10 @@ +import "@mariozechner/pi-coding-agent"; + +declare module "@mariozechner/pi-coding-agent" { + interface CreateAgentSessionOptions { + /** Extra extension paths merged with settings-based discovery. */ + additionalExtensionPaths?: string[]; + } +} + +export {};