silverbullet/plug-api/syscalls/jsonschema.ts

9 lines
188 B
TypeScript
Raw Normal View History

import { syscall } from "$sb/syscall.ts";
export function validateObject(
schema: any,
object: any,
): Promise<any> {
return syscall("jsonschema.validateObject", schema, object);
}