mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
d4c9a4d8f1
This reverts commit 79b8775bc9.
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;
|
|
};
|