mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 20:35:39 -06:00
8 lines
261 B
TypeScript
8 lines
261 B
TypeScript
declare module "tokenjuice/openclaw" {
|
|
type OpenClawPiRuntime = {
|
|
on(event: string, handler: (event: unknown, ctx: { cwd: string }) => unknown): void;
|
|
};
|
|
|
|
export function createTokenjuiceOpenClawEmbeddedExtension(): (pi: OpenClawPiRuntime) => void;
|
|
}
|