openclaw-multi-session-plugins/dist/index.d.ts
2026-05-05 11:43:40 +08:00

10 lines
264 B
TypeScript

import type { OpenClawPluginApi } from "openclaw/plugin-sdk/core";
declare const plugin: {
id: string;
name: string;
description: string;
register: typeof register;
};
export default plugin;
declare function register(api: OpenClawPluginApi): void;