mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 02:06:43 +00:00
10 lines
305 B
TypeScript
10 lines
305 B
TypeScript
export interface NativeStateSchemaSources {
|
|
swiftSource: string;
|
|
typescriptSource: string;
|
|
}
|
|
|
|
export function compareNativeStateSchemaVersions(sources: NativeStateSchemaSources): number;
|
|
export function checkNativeStateSchemaVersion(
|
|
readFileSync?: typeof import("node:fs").readFileSync,
|
|
): number;
|