Files
react-editor-shopify/lib/schema.server.ts
2026-05-02 09:53:48 -04:00

8 lines
202 B
TypeScript

import schemaJson from "../app.schema.json";
export type Schema = Record<string, { root: any; content: any[] }>;
export async function readSchema(): Promise<Schema> {
return schemaJson as Schema;
}