8 lines
202 B
TypeScript
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;
|
|
}
|