mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 13:31:38 +00:00
10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
export const STATE_SCHEMA_INLINE_PLUGIN_NAME: string;
|
|
|
|
export function createStateSchemaInlinePlugin(rootDir?: string): {
|
|
name: string;
|
|
load(
|
|
this: { addWatchFile(id: string): void },
|
|
id: string,
|
|
): { code: string; moduleType: "js" } | null;
|
|
};
|