mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-30 11:21:07 +00:00
11 lines
440 B
TypeScript
11 lines
440 B
TypeScript
import { loadGeneratedBundledPluginEntries } from "../generated/bundled-plugin-entries.generated.js";
|
|
import type { OpenClawPluginDefinition } from "./types.js";
|
|
|
|
type BundledRegistrablePlugin = OpenClawPluginDefinition & {
|
|
id: string;
|
|
register: NonNullable<OpenClawPluginDefinition["register"]>;
|
|
};
|
|
|
|
export const BUNDLED_PLUGIN_ENTRIES =
|
|
(await loadGeneratedBundledPluginEntries()) as unknown as readonly BundledRegistrablePlugin[];
|