We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ae6ad9 commit 108526cCopy full SHA for 108526c
packages/jsxpression/src/codegen/schema/data-types.ts
@@ -2,7 +2,7 @@ import type { Schema } from "../../schema.js";
2
import { mapSchemaTypeToTypeScript } from "./utils.js";
3
4
export function declareDataTypes(schema: Schema): string {
5
- let output = `declare global { //data \n`;
+ let output = `declare global {\n`;
6
7
if (schema.data) {
8
Object.entries(schema.data).forEach(([dataKey, dataSchema]) => {
0 commit comments